Vicky
Vicky

Reputation: 1687

C# select dbf column names

Is there a way to directly query the columns names of a DB4 .dbf file?

Upvotes: 1

Views: 1953

Answers (1)

Silx
Silx

Reputation: 2691

You can use GetOleDbSchemaTable (msdn) and here you've got an example of using it for dbf file in VB, that should help you in getting proper connection.

Upvotes: 3

Related Questions