我在运行此代码时将数据添加到数据库时出现问题错误将出现“java.sql.SQLException:数据库被锁定”我该如何解决这个问题?
try{
String sql="Insert into account(id,fname,lname,username,password) values(?,?,?,?,?)";
pst=conn.prepareStatement(sql);
pst.setString(1, txtId.getText());
pst.setString(2, txtFname.getText());
pst.setString(3, txtLname.getText());
pst.setString(4, txtUsername.getText());
pst.setString(5, txtPassword.getText());
pst.execute();
JOptionPane.showMessageDialog(null,"Saved");
}
catch(SQLException e){
JOptionPane.showMessageDialog(null,e);
}
finally{
try{
rs.close();
pst.close();
}
catch(SQLException e){
}
}