dbEngine.CreateWorkspace

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?TmFyYXNpbWhhbQ==?=

    #1

    dbEngine.CreateWorkspace

    I have a VB program that uses the DBEngine.Create Workspace command to
    authenticate users in SQL Server. We are trying to move that from VB to C#
    and I am trying to understand what the equivalent is in C# for the same. Can
    anyone throw some light on this.
  • Kevin Spencer

    #2
    Re: dbEngine.Create Workspace

    There is no equivalent to this in the .Net Framework. The object model for
    working with data in the .Net Framework is completely different. There are
    no workspaces, only Connections, and their associated classes. I would
    suggest you read up on ADO.Net:

    http://msdn2.microsoft.com/en-us/library/e80y5yhx.aspx

    --
    HTH,

    Kevin Spencer
    Microsoft MVP

    DSI PrintManager, Miradyne Component Libraries:


    "Narasimham " <Narasimham@dis cussions.micros oft.comwrote in message
    news:480856E5-5BF2-4901-A8EC-D63BDB178706@mi crosoft.com...
    >I have a VB program that uses the DBEngine.Create Workspace command to
    authenticate users in SQL Server. We are trying to move that from VB to C#
    and I am trying to understand what the equivalent is in C# for the same.
    Can
    anyone throw some light on this.

    Comment

    Working...