Merge pull request #134 from Ssamm45/mysql_port

Added port paramater to mysql
This commit is contained in:
Adam D. Ruppe 2018-02-20 09:29:45 -05:00 committed by GitHub
commit 0c1da31017
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -164,12 +164,12 @@ class MySqlResult : ResultSet {
class MySql : Database {
this(string host, string user, string pass, string db) {
this(string host, string user, string pass, string db,uint port = 0) {
mysql = enforceEx!(DatabaseException)(
mysql_init(null),
"Couldn't init mysql");
enforceEx!(DatabaseException)(
mysql_real_connect(mysql, toCstring(host), toCstring(user), toCstring(pass), toCstring(db), 0, null, 0),
mysql_real_connect(mysql, toCstring(host), toCstring(user), toCstring(pass), toCstring(db), port, null, 0),
error());
dbname = db;