What is wrong with this statement.
INSERT INTO test (ID,One,Two) VALUES (7,test,test)
Microsoft JET Database Engine error '80040e10'
No value given for one or more required parameters.
/login/action.asp, line 54
it looks like this
any help?
INSERT INTO test (ID,One,Two) VALUES (7,test,test)
Microsoft JET Database Engine error '80040e10'
No value given for one or more required parameters.
/login/action.asp, line 54
it looks like this
Code:
mySQL = "INSERT INTO test (ID,One,Two) "
mySQL = mySQL & "VALUES (" & newid & "," & newOne & "," & newTwo & ")"
response.write mySQL
sConnString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & _
"\\premfs3\sites\blah\blah\dbase.db;" & _
"Persist Security Info=False;"
Set Conn = Server.CreateObject("ADODB.Connection")
conn.open sConnString
conn.execute(mySQL)
Conn.Close