相关疑难解决方法(0)

尝试执行PreparedStatement时出现MySQLSyntaxErrorException

我尝试使用JDBC使用以下方法使用PreparedStatement插入userId(int)和userName(String):

public boolean saveUser(int userId, String userName){
    boolean saveStatus = false;
    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(sql);
    } catch (SQLException e) {
        e.printStackTrace();
    }finally{
        Connector.closeConnections();
    }
    return saveStatus;
}
Run Code Online (Sandbox Code Playgroud)

我得到以下stacktrace:

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in 
  your SQL syntax; check the manual that corresponds to your MySQL server version 
  for the right syntax to use near '?,?)' at line 1
Run Code Online (Sandbox Code Playgroud)

我究竟做错了什么?

java mysql jdbc

7
推荐指数
2
解决办法
8806
查看次数

标签 统计

java ×1

jdbc ×1

mysql ×1