From ff7c4df75f1c35e48b88dfaa37a04edd793bff18 Mon Sep 17 00:00:00 2001 From: Samuel Date: Tue, 20 Feb 2018 04:35:31 -0700 Subject: [PATCH] Added port paramater to mysqld --- mysql.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mysql.d b/mysql.d index aa59bdd..1d14b8d 100644 --- a/mysql.d +++ b/mysql.d @@ -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;