list of dbf tables from odbc connection

M

Martin

Hello

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

Thanks

Martin
 
M

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top