Guest User

Untitled

a guest
Nov 20th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Connection c = DriverManager.getConnection("jdbc:hsqldb:file:/opt/db/testdb", "SA", "");
  2.  
  3. Connection c = DriverManager.getConnection(
  4. "jdbc:hsqldb:file:/opt/db/testdb;ifexists=true", "SA", "");
  5.  
  6. Connection c = DriverManager.getConnection(
  7. "jdbc:hsqldb:hsql://localhost/xdb", "SA", "");
  8.  
  9. Connection c = DriverManager.getConnection(
  10. "jdbc:hsqldb:http://localhost/xdb", "SA", "");
Add Comment
Please, Sign In to add comment