What can be possibly wrong in the following statement trying to insert into ms accses
insert into mytable("Submission","Applicants Email",
"Applicants - 1")
values("abc school district","stger@ers.net",
"Incomplete")
While trying to execute through java odbc driver . i am getting:
java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Invalid bracketing of name '[stger@ers.net]'.
In access values need to be in single quotes , it seems , here is what worked for me
Thanks everyone for your time.