DBF to SDF

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Alright,

I have a few look up tables in dbf format which are used in a desktop
application. Porting this app to the .net compact framework has been
ok but i wish to use these dbfs since they contain 100 records which i
dont really want to have to enter again. Is there any way i can use
(or convert) these so they are accessible from my .net compact app?

Thanks

Chris
 
It would seem to me that the easiest way would be to import them into SQL
Server, otherwise import them into Access and export to a delimited text
file.
 
First Convert your dbf files into XML files

using dataset.writexml() method

Create new Database & sdf
Create tables
Update the values using the xml files
 

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

Similar Threads


Back
Top