|
From: Jon O. <jon...@us...> - 2008-02-11 22:45:35
|
Update of /cvsroot/mxbb/core/includes/db In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv5666 Modified Files: Tag: core28x firebird.php mssql.php mssql_odbc.php mysql.php mysql4.php mysqli.php oracle.php postgres.php sqlite.php Log Message: DBAL Update Index: mysqli.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/db/mysqli.php,v retrieving revision 1.8.2.4 retrieving revision 1.8.2.5 diff -C2 -d -r1.8.2.4 -r1.8.2.5 *** mysqli.php 10 Feb 2008 21:07:10 -0000 1.8.2.4 --- mysqli.php 11 Feb 2008 22:45:30 -0000 1.8.2.5 *************** *** 24,28 **** if (!is_object('dbal_mysqli')) { ! //define('SQL_LAYER', 'mysqli'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections --- 24,28 ---- if (!is_object('dbal_mysqli')) { ! define('SQL_LAYER', 'mysqli'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections Index: sqlite.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/db/sqlite.php,v retrieving revision 1.8.2.4 retrieving revision 1.8.2.5 diff -C2 -d -r1.8.2.4 -r1.8.2.5 *** sqlite.php 10 Feb 2008 21:07:10 -0000 1.8.2.4 --- sqlite.php 11 Feb 2008 22:45:30 -0000 1.8.2.5 *************** *** 24,28 **** if (!is_object('dbal_sqlite')) { ! //define('SQL_LAYER', 'sqlite'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections --- 24,28 ---- if (!is_object('dbal_sqlite')) { ! define('SQL_LAYER', 'sqlite'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections Index: postgres.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/db/postgres.php,v retrieving revision 1.8.2.4 retrieving revision 1.8.2.5 diff -C2 -d -r1.8.2.4 -r1.8.2.5 *** postgres.php 10 Feb 2008 21:07:10 -0000 1.8.2.4 --- postgres.php 11 Feb 2008 22:45:30 -0000 1.8.2.5 *************** *** 24,28 **** if (!is_object('dbal_postgres')) { ! //define('SQL_LAYER', 'postgres'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections --- 24,28 ---- if (!is_object('dbal_postgres')) { ! define('SQL_LAYER', 'postgres'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections Index: mysql4.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/db/mysql4.php,v retrieving revision 1.8.2.4 retrieving revision 1.8.2.5 diff -C2 -d -r1.8.2.4 -r1.8.2.5 *** mysql4.php 10 Feb 2008 21:07:09 -0000 1.8.2.4 --- mysql4.php 11 Feb 2008 22:45:30 -0000 1.8.2.5 *************** *** 24,28 **** if (!is_object('dbal_mysql4')) { ! //define('SQL_LAYER', 'mysql4'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; --- 24,28 ---- if (!is_object('dbal_mysql4')) { ! define('SQL_LAYER', 'mysql4'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; Index: firebird.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/db/firebird.php,v retrieving revision 1.8.2.4 retrieving revision 1.8.2.5 diff -C2 -d -r1.8.2.4 -r1.8.2.5 *** firebird.php 10 Feb 2008 21:07:08 -0000 1.8.2.4 --- firebird.php 11 Feb 2008 22:45:30 -0000 1.8.2.5 *************** *** 24,28 **** if (!is_object('dbal_firebird')) { ! //define('SQL_LAYER', 'firebird'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections --- 24,28 ---- if (!is_object('dbal_firebird')) { ! define('SQL_LAYER', 'firebird'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections Index: mssql.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/db/mssql.php,v retrieving revision 1.8.2.4 retrieving revision 1.8.2.5 diff -C2 -d -r1.8.2.4 -r1.8.2.5 *** mssql.php 10 Feb 2008 21:07:08 -0000 1.8.2.4 --- mssql.php 11 Feb 2008 22:45:30 -0000 1.8.2.5 *************** *** 24,28 **** if (!is_object('dbal_mssql')) { ! //define('SQL_LAYER', 'mssql'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections --- 24,28 ---- if (!is_object('dbal_mssql')) { ! define('SQL_LAYER', 'mssql'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections Index: mysql.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/db/mysql.php,v retrieving revision 1.8.2.4 retrieving revision 1.8.2.5 diff -C2 -d -r1.8.2.4 -r1.8.2.5 *** mysql.php 10 Feb 2008 21:07:09 -0000 1.8.2.4 --- mysql.php 11 Feb 2008 22:45:30 -0000 1.8.2.5 *************** *** 24,28 **** if (!is_object('dbal_mysql')) { ! //define('SQL_LAYER', 'mysql'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections --- 24,28 ---- if (!is_object('dbal_mysql')) { ! define('SQL_LAYER', 'mysql'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections Index: oracle.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/db/oracle.php,v retrieving revision 1.8.2.4 retrieving revision 1.8.2.5 diff -C2 -d -r1.8.2.4 -r1.8.2.5 *** oracle.php 10 Feb 2008 21:07:10 -0000 1.8.2.4 --- oracle.php 11 Feb 2008 22:45:30 -0000 1.8.2.5 *************** *** 24,28 **** if (!is_object('dbal_oracle')) { ! //define('SQL_LAYER', 'oracle'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections --- 24,28 ---- if (!is_object('dbal_oracle')) { ! define('SQL_LAYER', 'oracle'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections Index: mssql_odbc.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/db/mssql_odbc.php,v retrieving revision 1.8.2.4 retrieving revision 1.8.2.5 diff -C2 -d -r1.8.2.4 -r1.8.2.5 *** mssql_odbc.php 10 Feb 2008 21:07:09 -0000 1.8.2.4 --- mssql_odbc.php 11 Feb 2008 22:45:30 -0000 1.8.2.5 *************** *** 24,28 **** if (!is_object('dbal_mssql_odbc')) { ! //define('SQL_LAYER', 'mssql_odbc'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections --- 24,28 ---- if (!is_object('dbal_mssql_odbc')) { ! define('SQL_LAYER', 'mssql_odbc'); include_once($mx_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections |