Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

MySQLSyntaxErrorException ao tentar executar PreparedStatement


Tente isso, isso deve funcionar:
    try {
        connection.setAutoCommit(true);
        String sql = "insert into testtable values(?,?)";
        PreparedStatement statement = connection.prepareStatement(sql);
        statement.setInt(1, userId);
        statement.setString(2, userName);
        saveStatus  = statement.execute();
    } catch (SQLException e) {
        e.printStackTrace();
    }
    return saveStatus;
}

PreparedStatement é uma instrução pré-compilada. você não precisa fornecer a string sql durante a execução.