|
@@ -56,7 +56,7 @@ final class Database {
|
|
|
$connection = self::connect($host, $user, $password);
|
|
|
|
|
|
|
|
|
- if ($connection===false) Response::error($connection->connect_error);
|
|
|
+ if ($connection===false) Response::error(self::connect_error());
|
|
|
|
|
|
if (self::setCharset($connection)===false) Response::error('Could not set database charset!');
|
|
|
|
|
@@ -90,6 +90,15 @@ final class Database {
|
|
|
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ * @return string Returns the string description of the last connect error
|
|
|
+ */
|
|
|
+ private static function connect_error() {
|
|
|
+
|
|
|
+ return mysqli_connect_error();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
* @return boolean Returns true when successful.
|
|
|
*/
|