Use Access import specs into vb.net

tonytone

New member
Joined
Apr 3, 2003
Messages
2
Location
south florida
Is there any way someone could use the Access import specs for vb.net. Or is there something I could use to import a comma delimited file into accessxp while using vb.net? Thanks.
 
sorry, I forgot the Insert statement...

In case you want to write to a table outside the current DB....

"INSERT INTO Table1( Field1,Field2,Field3,Field4) _
IN D:/Path/Datbase.mdb _
SELECT Field1,Field2,Field3,Field4 _
FROM Table2"

Both parts of this string must have the same number of fields and data types.
 
Back
Top