INSERT INTO table_tblMain (Cell, ESN, FailCode, Description, [Date]) VALUES ('Cell2','46605485','Passed','Passed','20060512');
e.g.
Code: Select all
'insert into table_tblMain
SQLString = "INSERT INTO table_tblMain (Cell, ESN, FailCode, Description, [Date]) " & _
"VALUES ('" & cell & "', '" & esn & "', '" & fcode & "', '" & descrip & "', '" & date & "');"
MyDB.Execute(SQLString)