我尝试使用prepareStatement来查询sqlite,但遇到异常:
java.sql.SQLException: not supported by PreparedStatment
at org.sqlite.PrepStmt.unused(PrepStmt.java:328)
at org.sqlite.PrepStmt.executeUpdate(PrepStmt.java:314)
我正在使用Eclipse开发我的程序,所以当我点击at org.sqlite.PrepStmt.unused(PrepStmt.java:328)
时,它会将我重定向到PrepStmt.class
,我发现这些内容:
@Override
public int executeUpdate(String sql) throws SQLException {
throw unused();
}
private SQLException unused() {
return new SQLException("not supported by PreparedStatment");
}
这是我的代码:
public static void deleteOp(String word) throws Exception {
Connection c = null;
PreparedStatement stmt = null;
try {
Class.forName("org.sqlite.JDBC");
c = DriverManager.getConnection(connectionString);
c.setAutoCommit(false);
System.out.println("Opened database successfully");
String sql = "DELETE from " + tableName + " where WORD = ? ;";
System.out.println(sql);
stmt = c.prepareStatement(sql);
stmt.clearParameters();
stmt.setString(1, word);
stmt.executeUpdate(sql);
c.commit();
stmt.close();
c.close();
} catch ( Exception e ) {
throw e;
}
System.out.println("Operation done successfully");
}
我想知道我的代码有问题或Sqlite根本不支持prepareStatement或者我的驱动程序有问题(例如由于过时)?
答案 0 :(得分:5)
您不需要将sql
变量传递给executeUpdate
方法,因为您已在prepareStatement
句子中对其进行了配置,因此请尝试:
stmt.executeUpdate();
答案 1 :(得分:3)
PreparedStatement
过着双重生活:它extends Statement
,因此继承了这个类的方法 - 尽管其中一些方法对PreparedStatement
没有多大意义。
在这种情况下,executeUpdate(String)
来自Statement
并直接运行语句,而不进行?
替换。这不是您想要的:您只需要executeUpdate()
,这是PreparedStatement
变体。所以从某种意义上说,他们实际上是通过不实施Statement
变种来帮助你的!