Fixing issues found by Roly and me

This commit is contained in:
Mauricio Veliz
2022-06-22 16:01:24 -04:00
parent 46988216f7
commit f6bed53cfb
8 changed files with 11 additions and 11 deletions

View File

@@ -117,7 +117,7 @@ class DB_mysqli extends DB_common
*/
function __construct()
{
$this->DB_common();
parent::__construct();
$this->phptype = 'mysqli';
$this->dbsyntax = 'mysqli';
$this->features = array(

View File

@@ -67,7 +67,7 @@ class DB_oci8 extends DB_common
function __construct()
{
$this->DB_common();
parent::__construct();
$this->phptype = 'oci8';
$this->dbsyntax = 'oci8';
$this->features = array(

View File

@@ -52,7 +52,7 @@ class DB_odbc extends DB_common
function __construct()
{
$this->DB_common();
parent::__construct();
$this->phptype = 'odbc';
$this->dbsyntax = 'sql92';
$this->features = array(

View File

@@ -53,7 +53,7 @@ class DB_pgsql extends DB_common
function __construct()
{
$this->DB_common();
parent::__construct();
$this->phptype = 'pgsql';
$this->dbsyntax = 'pgsql';
$this->features = array(