mirror of https://github.com/adamdruppe/arsd.git
Added port paramater to mysqld
This commit is contained in:
parent
62dbfa5bdc
commit
ff7c4df75f
4
mysql.d
4
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;
|
||||
|
|
Loading…
Reference in New Issue