Import Text File Into Database

Ropy

New member
Joined
Sep 29, 2007
Messages
1
Programming Experience
1-3
Hi, bodies!

I want to import a text file into a database that is looks like MS Access 2003 Text Import Function. Can anyone help me???
 
If you may choose the export/import format, just use the WriteXML and ReadXML methods to save and load the data. Otherwise you'll have to code some loops to look in the file and fill the datatable. Then just update you datatable to the database using the TableAdapter.
 
Back
Top