Guest User

Untitled

a guest
Jan 24th, 2016
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class SQLConnection {
  2. def getConnection(host: String, port: Integer, user: String, password: String, dbName: String, dbType: String) {
  3. DriverManager.getConnection("jdbc:" + dbType + "://" + host + ":" + port + "/" + dbName,
  4. user, password)
  5. }
  6. }
Add Comment
Please, Sign In to add comment