在我使用以下代码将 BLOB 值写入数据库之后:
// bb is of type ByteBuffer
Blob blob = new SerialBlob(bb.array());
sqlStatement = "UPDATE Words SET Examples=? WHERE Word=\"" + word + "\"";
// c is of type Connection
PreparedStatement pstmt = c.prepareStatement(sqlStatement);
pstmt.setBlob(1, blob);
pstmt.executeUpdate();
c.commit();
我收到以下错误:
java.sql.SQLException:SQLite JDBC 驱动程序未实现
无论我从哪里下载这个驱动程序,我的问题是你是否知道任何安全方法可以将 BLOB 值写入 SQLite 数据库。