helllo,
I do have a problem with access...
this is my code:
<%
var connection= new ActiveXObject("ADODB.Connection");
connection.Provider="Microsoft.Jet.OLEDB.4.0";
connection.ConnectionString = "Data Source=" +Server.MapPath("/database/Training11.mdb");
connection.Open;
var SQL = "INSERT INTO User (FirstName, MiddleName, LastName) VALUES ('lolo', 'keymo', 'rub')";
connection.Execute(SQL);
connection.Close();
%>
And i do get this error message:
Microsoft JET Database Engine error '80040e14'
Syntax error in INSERT INTO statement.
/testy.asp, line 16
so how could i solve this problem??
do i have some problem in the insert query??
help!!