我创建了一个使用sqlite数据库的java软件。整个数据库工作顺利,但是在运行应用程序一段时间后,我收到以下消息(来自 try catch 块):
java.sql.SQLException: [SQLITE_BUSY] 数据库文件被锁定(数据库被锁定)
我通过每次出现异常时关闭软件来解决我的问题。但是有没有办法关闭我的数据库,以免每次都关闭软件?
我有很多疑问,但我的问题总是出现在一个特定的点:
try {
String query = "select * from StudentsSession where userId=? and course=? and level=?";
PreparedStatement pst = connectionUsers.prepareStatement(query);
pst.setString(1, saveUser.getText());
pst.setString(2, textSubjectQTest);
st.setString(3, showCurrentLevelLabel.getText());
ResultSet rs = pst.executeQuery();
while (rs.next()) {
count = count + 1;
}
pst.close();
rs.close();
} catch (Exception a) {
System.out.println(a);
}
try {
String countS, tmpS;
countS = String.valueOf(count);
sessionId.setText(countS);
long unixTime = System.currentTimeMillis() / 1000L;
tmpS = String.valueOf(unixTime);
date.setText(tmpS);
course.setText(textSubjectQTest);
String query = "insert into StudentsSession (userId,date,course,level,trial,score) values (?,?,?,?,?,-1)";
PreparedStatement pst = connectionUsers.prepareStatement(query);
pst.setString(1, saveUser.getText());
pst.setString(2, tmpS);
pst.setString(3, textSubjectQTest);
pst.setString(4, showCurrentLevelLabel.getText());
pst.setString(5, countS);
pst.executeUpdate();
pst.close();
} catch (Exception a) {
System.out.println(a);
System.exit(0);
}
String file1 = "";
ResultSet ts4;
try {
sessionId3 = "";
String query3 = "select * from studentssession where userid = ? and course = ? and level = ?";
PreparedStatement pst__1 = connectionUsers.prepareStatement(query3);
pst__1.setString(1, saveUser.getText());
pst__1.setString(2, textSubjectQTest);
pst__1.setString(3, showCurrentLevelLabel.getText());
ts4 = pst__1.executeQuery();
while (ts4.next()) {
sessionId3 = ts4.getString("sessionId");
}
pst__1.close();
ts4.close();
obj = new CaptureVideoFromWebCamera();
file1 = "videos/" + userTextFieldS.getText();
file1 = file1 + "_" + sessionId3;
file1 = file1 + ".wmv";
obj.start(file1);
} catch (Exception e4) {
e4.getCause();
}
有时此代码会引发异常。
每次打开与 SQLite 数据库的连接时,请确保在处理结果等后关闭数据库连接。如果您已经打开了与数据库的连接,并且如果您尝试再次获取连接并尝试一些
Update
或 Insert
查询,系统不会给予权限并会报错。
你的try catch是错误的,你尝试关闭try块中的
ResultSet
和Statemnt
而不是finally块。这可能会导致泄漏。
最后你应该这样做。
PreparedStatement pst = null;
ResultSet rs = null;
try {
pst = connectionUsers.prepareStatement(query);
...
rs = pst.executeQuery();
...
} catch (Exception a) {
a.printStackTrace();
} finally {
if(rs != null){
try{
rs.close();
} catch(Exception e){
e.printStackTrace();
}
}
if(pst != null){
try{
pst.close();
} catch(Exception e){
e.printStackTrace();
}
}
}
或者您可以查看 Try-with-resource。
这可能是一个原因。
与现有问题有些重复,但是这是一个很好的起点。因为 SQLite 只是一个读取和写入文件系统上的文件的库,而不是完整的 SQL 数据库,所以您实际上一次应该只打开一个连接。否则很容易陷入竞争状态。
对于本地测试,应该没问题,但对于需要多个用户的任何复杂性系统,您应该使用 Postgre 或 MySQL 之类的东西。