KnightsOfTheRoun
KnightsOfTheRoun

Reputation: 155

Create DBF file from DataTable in VB.net

I have a fully populated DataTable and I am trying to write the entire DataTable to a dbase file. I am trying to use DBase 3 and am in VB.net. Any assistance would be greatly appreciated

Upvotes: 0

Views: 2241

Answers (1)

Olivier Jacot-Descombes
Olivier Jacot-Descombes

Reputation: 112299

One possibility is to use the SocialExplorer/FastDBF open source .NET library for reading and writing DBF files.

You will find an example showing how dbf-files can be created. FastDBF doesn’t use DataTable so. The example is in C# sharp, however, it's the same principle in VB.

Upvotes: 1

Related Questions