PSF-BotServer/pslogin/src/main/scala/DatabaseConnector.scala
2017-03-06 19:30:45 -05:00

9 lines
402 B
Scala

// Copyright (c) 2017 PSForever
import com.github.mauricio.async.db.Connection
import com.github.mauricio.async.db.mysql.MySQLConnection
import com.github.mauricio.async.db.mysql.util.URLParser
object DatabaseConnector {
val accounts_db = URLParser.parse("jdbc:mysql://localhost:3306/psforever-accounts?user=root&password=PSForever")
def getAccountsConnection = new MySQLConnection(accounts_db)
}