list of dbf tables from odbc connection

  • Thread starter Thread starter Martin
  • Start date Start date
M

Martin

Hello

Using c#, is there a way to get a list of table names from odbc dsn dbf
database connection?

Thanks

Martin
 
Craigm said:
not sure if this helps
GetOleDbSchemaTable()
Thanks Craigm

The visual foxpro driver seems not to support table extraction but with the
odbc schema
I found a link to the dbf folder to tables using,
DataTable schema = conn.GetSchema(OdbcMetaDataCollectionNames.Tables

string directory = schema.Rows[0][0].ToString();

Martin
 
Back
Top