diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-07-21 18:08:40 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-07-21 18:11:24 +0200 |
commit | 65bafb22810038fd51e22fd8168775afd86c2e74 (patch) | |
tree | edb2054a88bd56992b08033340bd0f42a8335f43 | |
parent | 90a957ad26f52e26c3979464c5ac15b1fd0fcc28 (diff) | |
download | forums-65bafb22810038fd51e22fd8168775afd86c2e74.tar forums-65bafb22810038fd51e22fd8168775afd86c2e74.tar.gz forums-65bafb22810038fd51e22fd8168775afd86c2e74.tar.bz2 forums-65bafb22810038fd51e22fd8168775afd86c2e74.tar.xz forums-65bafb22810038fd51e22fd8168775afd86c2e74.zip |
[ticket/11015] Add BC files for the drivers
PHPBB3-11015
-rw-r--r-- | phpBB/includes/db/firebird.php | 19 | ||||
-rw-r--r-- | phpBB/includes/db/mssql.php | 19 | ||||
-rw-r--r-- | phpBB/includes/db/mssql_odbc.php | 19 | ||||
-rw-r--r-- | phpBB/includes/db/mssqlnative.php | 19 | ||||
-rw-r--r-- | phpBB/includes/db/mysql.php | 19 | ||||
-rw-r--r-- | phpBB/includes/db/mysqli.php | 19 | ||||
-rw-r--r-- | phpBB/includes/db/oracle.php | 19 | ||||
-rw-r--r-- | phpBB/includes/db/postgres.php | 19 | ||||
-rw-r--r-- | phpBB/includes/db/sqlite.php | 19 |
9 files changed, 171 insertions, 0 deletions
diff --git a/phpBB/includes/db/firebird.php b/phpBB/includes/db/firebird.php new file mode 100644 index 0000000000..33f4e2ea48 --- /dev/null +++ b/phpBB/includes/db/firebird.php @@ -0,0 +1,19 @@ +<?php +/** +* +* @package dbal +* @copyright (c) 2012 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +class dbal_firebird extends phpbb_db_driver_firebird { +} diff --git a/phpBB/includes/db/mssql.php b/phpBB/includes/db/mssql.php new file mode 100644 index 0000000000..a0c3917fcb --- /dev/null +++ b/phpBB/includes/db/mssql.php @@ -0,0 +1,19 @@ +<?php +/** +* +* @package dbal +* @copyright (c) 2012 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +class dbal_mssql extends phpbb_db_driver_mssql { +} diff --git a/phpBB/includes/db/mssql_odbc.php b/phpBB/includes/db/mssql_odbc.php new file mode 100644 index 0000000000..2a642b30f5 --- /dev/null +++ b/phpBB/includes/db/mssql_odbc.php @@ -0,0 +1,19 @@ +<?php +/** +* +* @package dbal +* @copyright (c) 2012 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +class dbal_mssql_odbc extends phpbb_db_driver_mssql_odbc { +} diff --git a/phpBB/includes/db/mssqlnative.php b/phpBB/includes/db/mssqlnative.php new file mode 100644 index 0000000000..cfbdba66fe --- /dev/null +++ b/phpBB/includes/db/mssqlnative.php @@ -0,0 +1,19 @@ +<?php +/** +* +* @package dbal +* @copyright (c) 2012 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +class dbal_mssqlnative extends phpbb_db_driver_mssqlnative { +} diff --git a/phpBB/includes/db/mysql.php b/phpBB/includes/db/mysql.php new file mode 100644 index 0000000000..dcd69cf51a --- /dev/null +++ b/phpBB/includes/db/mysql.php @@ -0,0 +1,19 @@ +<?php +/** +* +* @package dbal +* @copyright (c) 2012 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +class dbal_mysql extends phpbb_db_driver_mysql { +} diff --git a/phpBB/includes/db/mysqli.php b/phpBB/includes/db/mysqli.php new file mode 100644 index 0000000000..040f5adf43 --- /dev/null +++ b/phpBB/includes/db/mysqli.php @@ -0,0 +1,19 @@ +<?php +/** +* +* @package dbal +* @copyright (c) 2012 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +class dbal_mysqli extends phpbb_db_driver_mysqli { +} diff --git a/phpBB/includes/db/oracle.php b/phpBB/includes/db/oracle.php new file mode 100644 index 0000000000..fb1484aeb0 --- /dev/null +++ b/phpBB/includes/db/oracle.php @@ -0,0 +1,19 @@ +<?php +/** +* +* @package dbal +* @copyright (c) 2012 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +class dbal_oracle extends phpbb_db_driver_oracle { +} diff --git a/phpBB/includes/db/postgres.php b/phpBB/includes/db/postgres.php new file mode 100644 index 0000000000..dc5e95ac57 --- /dev/null +++ b/phpBB/includes/db/postgres.php @@ -0,0 +1,19 @@ +<?php +/** +* +* @package dbal +* @copyright (c) 2012 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +class dbal_postgres extends phpbb_db_driver_postgres { +} diff --git a/phpBB/includes/db/sqlite.php b/phpBB/includes/db/sqlite.php new file mode 100644 index 0000000000..e4396bc97f --- /dev/null +++ b/phpBB/includes/db/sqlite.php @@ -0,0 +1,19 @@ +<?php +/** +* +* @package dbal +* @copyright (c) 2012 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +class dbal_sqlite extends phpbb_db_driver_sqlite { +} |