reading and writing dbf files

  • Thread starter Thread starter Andrus
  • Start date Start date
A

Andrus

For file based export-import with existing programs I need to implement dbf
format file read/write from my .NET 2 winforms application.
It is not possible to force users to install something so this must be
included with my application.

Where to find C# source code which read/writes dbf files ?

Andrus.
 
Hi,

What kind of dbf files you will interact with?

Depending of what created it (VFP, DB(3,4,5), etc) you could need a
different driver.
 
Andrus said:
For file based export-import with existing programs I need to implement dbf
format file read/write from my .NET 2 winforms application.
It is not possible to force users to install something so this must be
included with my application.

Where to find C# source code which read/writes dbf files ?

Can you use the ODBC driver for Dbase ?

Arne
 
In interacting with VFP 9 application.

It creates files in FoxPro 2x dbf format.
VFP 9 can read most other dbf formats so it is possible to create dbf in any
format.

I'm looking for a way to create dbf file in exclusive mode and read them in
exclusive mode.
No multi user access, indexes are not required.

Andrus.
 
Can you use the ODBC driver for Dbase ?

I need to create application which can be deployed by copying, without
requiring to write to registry.
How I can distribute ODBC driver with my application and use it without
registry access?

I need only simple reading Fox2x dbf files and creating dbf files in any
format.

dbf structure is simple. I think this requires not too much code for this,
some code must exist.

Andrus.
 
I need to create application which can be deployed by copying, without
requiring to write to registry.
How I can distribute ODBC driver with my application and use it without
registry access?

I need only simple reading Fox2x dbf files and creating dbf files in any
format.

dbf structure is simple. I think this requires not too much code for this,
some code must exist.

Andrus.

I used dbf files some months ago and i used this driver:
http://www.microsoft.com/downloads/...8F-2D58-491F-A0FA-95A3289C5FD4&displaylang=en

bye bye
 

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

Back
Top