Javaプログラムで次のコードを書きました。
public int insertRecord()
{
connection=PersistentieController.getInstance().getConnection();
int resultaat = 0;
String sql ="INSERT INTO TestDb (Nr Dossier, Année) VALUES (?,?)";
try
{
pstatement = initStatement(connection, sql);
pstatement.setString(1, "9999");
pstatement.setInt(2, 2012);
resultaat = pstatement.executeUpdate();
pstatement.close();
} //einde try
catch ( SQLException sqlException ){
sqlException.printStackTrace();
}
return resultaat;
} //einde insert()
構文エラーが表示されます。予約語を使用していないことを確認しました。何か案は?どうも。