mirror of https://github.com/adamdruppe/arsd.git
deprecations on new dmd
This commit is contained in:
parent
ef5f86f8ca
commit
6508cbad3a
6
mysql.d
6
mysql.d
|
@ -197,10 +197,10 @@ class MySqlResult : ResultSet {
|
|||
+/
|
||||
class MySql : Database {
|
||||
this(string host, string user, string pass, string db, uint port = 0) {
|
||||
mysql = enforceEx!(DatabaseException)(
|
||||
mysql = enforce!(DatabaseException)(
|
||||
mysql_init(null),
|
||||
"Couldn't init mysql");
|
||||
enforceEx!(DatabaseException)(
|
||||
enforce!(DatabaseException)(
|
||||
mysql_real_connect(mysql, toCstring(host), toCstring(user), toCstring(pass), toCstring(db), port, null, 0),
|
||||
error());
|
||||
|
||||
|
@ -371,7 +371,7 @@ class MySql : Database {
|
|||
override ResultSet queryImpl(string sql, Variant[] args...) {
|
||||
sql = escapedVariants(this, sql, args);
|
||||
|
||||
enforceEx!(DatabaseException)(
|
||||
enforce!(DatabaseException)(
|
||||
!mysql_query(mysql, toCstring(sql)),
|
||||
error() ~ " :::: " ~ sql);
|
||||
|
||||
|
|
Loading…
Reference in New Issue