Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public static Connection ConnessioneDB()
  2. {
  3. try
  4. {
  5. Class.forName("org.sqlite.JDBC");
  6. Connection con = DriverManager.getConnection("jdbc:sqlite:Rottamazione.sqlite");
  7.  
  8. return con;
  9.  
  10. }
  11. catch (Exception e)
  12. {
  13. JOptionPane.showMessageDialog(null, e);
  14. }
  15. return null;
  16. }
  17.  
  18. Connection con = DriverManager.getConnection("jdbc:sqlite:resource:Rottamazione.sqlite");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement