I have created a application using Java which connect to the MDB file, it writes read and modify data success fully. I have tested it on WIndows 7 32 bit. Now I have shipped every thing on the other machine and created system DNS and all as it was on the earlier machine but the application started to give error for the following query
insert into tblCredentials(NameCode,Password) values(72,'reset123')
Along with that it also started to give error to many INSERT INTO statement which are working on the other machine.
The error I get is
java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in
INSERT INTO statement.
at sun.jdbc.odbc.JdbcOdbc.createSQLException(Unknown Source)
at sun.jdbc.odbc.JdbcOdbc.standardError(Unknown Source)
at sun.jdbc.odbc.JdbcOdbc.SQLExecDirect(Unknown Source)
at sun.jdbc.odbc.JdbcOdbcStatement.execute(Unknown Source)
at sun.jdbc.odbc.JdbcOdbcStatement.executeUpdate(Unknown Source)
at timesheetserver.MDBHandler.executeUpdateQuery(MDBHandler.java:99)
I cant find anything wrong in it and moreover it is working on one of my WIndows & machine.
What can be the problem Thanks in advance