gsc123
Programmer
- Jan 24, 2008
- 197
sConn = "DRIVER={Microsoft Text Driver (*.txt; *.csv)};" & "DefaultDir=" & "C:\Inetpub\ & ";Extensions=asc,csv,tab,txt"
I have the above connection to a csv file,,, my update query is this
update ESCORTLIST set ESCORTLIST.Title = '1997-1998 FORD ESCORT AIR BAG MODULE.' where ESCORTLIST.id = 1
The error is
[Microsoft][ODBC Text Driver] The Microsoft Jet database engine could not find the object 'ESCORTLIST.txt'. Make sure the object exists and that you spell its name and the path name correctly.
...any ideas?
This is my execute code?
rs2.Open sConn
rs2.Execute(sql)
I have the above connection to a csv file,,, my update query is this
update ESCORTLIST set ESCORTLIST.Title = '1997-1998 FORD ESCORT AIR BAG MODULE.' where ESCORTLIST.id = 1
The error is
[Microsoft][ODBC Text Driver] The Microsoft Jet database engine could not find the object 'ESCORTLIST.txt'. Make sure the object exists and that you spell its name and the path name correctly.
...any ideas?
This is my execute code?
rs2.Open sConn
rs2.Execute(sql)