No suitable driver found (SQLite)
问题 I hope someone can help me. I'm working on a simple application which connects with an SQLite database. Following is my connection code: try { Connection con = DriverManager.getConnection("jdbc:sqlite:myDB.sqlite"); PreparedStatement pstm = con.prepareStatement("insert into hell(username,pssword) " + "values ('"+tfUname.getText()+"','"+tfUpass.getText()+"')"); pstm.close(); con.close(); JOptionPane.showMessageDialog(null,"Congrats, you have been registered succesfully"); RegisterWindow rw =