Remove redundancies.

This commit is contained in:
Michael 2017-03-13 06:09:00 +00:00
parent e10339a47f
commit acadb8ecdb
1 changed files with 1 additions and 15 deletions

View File

@ -218,21 +218,7 @@ class dba {
$this->error = '';
// Check the connection (This can reconnect the connection - if configured)
switch ($this->driver) {
case 'pdo':
// Not sure if this really is working like expected
$connected = ($this->db->getAttribute(PDO::ATTR_CONNECTION_STATUS) != "");
break;
case 'mysqli':
$connected = $this->db->ping();
break;
case 'mysql':
$connected = mysql_ping($this->db);
break;
}
$connstr = ($connected ? "Connected" : "Disonnected");
$connstr = ($this->connected() ? "Connected" : "Disonnected");
$stamp1 = microtime(true);