Get User List from Access MDB

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What is the equivalent of ADODB

OpenSchema(Schema:=adSchemaProviderSpecific,
SchemaId:="{947bb102-5d43-11d1-bdbf-00c04fb92675}") in ADO.NET ?
The above statement will fills a recordset with users connected to my
Access.mdb
I would like to do the same for my ADO.NET program.
I am using VS.NET 2003, AccessXP and WinXP SP2.

Please help.

Thank You
Woo
 
¤ What is the equivalent of ADODB
¤
¤ OpenSchema(Schema:=adSchemaProviderSpecific,
¤ SchemaId:="{947bb102-5d43-11d1-bdbf-00c04fb92675}") in ADO.NET ?
¤ The above statement will fills a recordset with users connected to my
¤ Access.mdb
¤ I would like to do the same for my ADO.NET program.
¤ I am using VS.NET 2003, AccessXP and WinXP SP2.

I don't believe there is an equivalent since GetOleDbSchemaTable doesn't appear to have a
System.Data.OleDb.OleDbSchemaGuid (or provider specific GUID) for the Jet User Roster.


Paul
~~~~
Microsoft MVP (Visual Basic)
 
I have tried and found out that msldbusr.dll is only compatible with Jet 2.x
and 3.x database. Jet 4.0 still have to rely on the ADO UserRoster.
 
Back
Top