我已经创建了一个使用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();
}
有时这段代码会引发异常。
答案 0 :(得分:1)
您的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。
这可能是一个原因。
答案 1 :(得分:0)
排序现有问题的副本,但this is a good starting point。因为SQLite只是一个读取和写入文件系统上的文件的库,而不是一个完整的SQL数据库,所以一次只能打开一个连接。否则很容易陷入竞争状态。
对于本地测试,它应该没问题,但是对于期望多个用户的任何复杂系统,你应该使用像Postgre或MySQL这样的东西。
答案 2 :(得分:0)
每次打开与SQLite数据库的连接时,请确保在处理结果等之后关闭数据库连接,如果您已经与数据库建立了开放连接,并且尝试重新获取连接并尝试某些Update
或Insert
查询,系统将不会给予许可,并且会引发错误。