J
Jason
Ok
thanks for the reply
I have checked that, still same error. I will paste my
Insert statement.
"INSERT INTO AddressBook(FirstNames, Surname, Address,
Company, TelHome, TelWork, TelFax, TelMobile,
PostalAddress, Position) VALUES
('test', 'test', 'test', 'test', 'test', 'test', 'test', 't
est', 'test', 'test')"
all fields are of type TEXT and there is an "ID" field of
type "AutoNumber"
i have also tried
"INSERT INTO AddressBook(FirstNames, Surname, Address,
Company, TelHome, TelWork, TelFax, TelMobile,
PostalAddress, Position) VALUES (test, test, test, test,
test, test, test, test, test, test)"
this also did not work.
the OleDbCommandBuilder generates this command
"INSERT INTO AddressBook(FirstNames, Surname, Address,
Company, TelHome, TelWork, TelFax, TelMobile,
PostalAddress, Position) VALUES
(?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"
which also does not work.
all 3 statements apparently have a syntax error. I get
a "Syntax error in INSERT INTO statement". maybe
someone could spot it, or perhaps the problem is not here?
Thanks for the help
Jason
thanks for the reply
I have checked that, still same error. I will paste my
Insert statement.
"INSERT INTO AddressBook(FirstNames, Surname, Address,
Company, TelHome, TelWork, TelFax, TelMobile,
PostalAddress, Position) VALUES
('test', 'test', 'test', 'test', 'test', 'test', 'test', 't
est', 'test', 'test')"
all fields are of type TEXT and there is an "ID" field of
type "AutoNumber"
i have also tried
"INSERT INTO AddressBook(FirstNames, Surname, Address,
Company, TelHome, TelWork, TelFax, TelMobile,
PostalAddress, Position) VALUES (test, test, test, test,
test, test, test, test, test, test)"
this also did not work.
the OleDbCommandBuilder generates this command
"INSERT INTO AddressBook(FirstNames, Surname, Address,
Company, TelHome, TelWork, TelFax, TelMobile,
PostalAddress, Position) VALUES
(?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"
which also does not work.
all 3 statements apparently have a syntax error. I get
a "Syntax error in INSERT INTO statement". maybe
someone could spot it, or perhaps the problem is not here?
Thanks for the help
Jason