From 7e8f168dfdb832b48967294f0313434d6c383af7 Mon Sep 17 00:00:00 2001 From: zYne Date: Mon, 30 Oct 2006 12:11:33 +0000 Subject: [PATCH] Added Doctrine_DB driver skeletons, fixes #210 --- lib/Doctrine/DB/Firebird.php | 32 ++++++++++++++++++++++++++++++++ lib/Doctrine/DB/Informix.php | 32 ++++++++++++++++++++++++++++++++ lib/Doctrine/DB/Mssql.php | 32 ++++++++++++++++++++++++++++++++ lib/Doctrine/DB/Mysql.php | 32 ++++++++++++++++++++++++++++++++ lib/Doctrine/DB/Oracle.php | 32 ++++++++++++++++++++++++++++++++ lib/Doctrine/DB/Pgsql.php | 32 ++++++++++++++++++++++++++++++++ lib/Doctrine/DB/Sqlite.php | 32 ++++++++++++++++++++++++++++++++ 7 files changed, 224 insertions(+) create mode 100644 lib/Doctrine/DB/Firebird.php create mode 100644 lib/Doctrine/DB/Informix.php create mode 100644 lib/Doctrine/DB/Mssql.php create mode 100644 lib/Doctrine/DB/Mysql.php create mode 100644 lib/Doctrine/DB/Oracle.php create mode 100644 lib/Doctrine/DB/Pgsql.php create mode 100644 lib/Doctrine/DB/Sqlite.php diff --git a/lib/Doctrine/DB/Firebird.php b/lib/Doctrine/DB/Firebird.php new file mode 100644 index 000000000..303708bb4 --- /dev/null +++ b/lib/Doctrine/DB/Firebird.php @@ -0,0 +1,32 @@ +. + */ +Doctrine::autoload('Doctrine_DB'); +/** + * @package Doctrine + * @url http://www.phpdoctrine.com + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @version $Id$ + */ +class Doctrine_DB_Firebird extends Doctrine_DB { + +} diff --git a/lib/Doctrine/DB/Informix.php b/lib/Doctrine/DB/Informix.php new file mode 100644 index 000000000..2928df61a --- /dev/null +++ b/lib/Doctrine/DB/Informix.php @@ -0,0 +1,32 @@ +. + */ +Doctrine::autoload('Doctrine_DB'); +/** + * @package Doctrine + * @url http://www.phpdoctrine.com + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @version $Id$ + */ +class Doctrine_DB_Informix extends Doctrine_DB { + +} diff --git a/lib/Doctrine/DB/Mssql.php b/lib/Doctrine/DB/Mssql.php new file mode 100644 index 000000000..e0c75b2a3 --- /dev/null +++ b/lib/Doctrine/DB/Mssql.php @@ -0,0 +1,32 @@ +. + */ +Doctrine::autoload('Doctrine_DB'); +/** + * @package Doctrine + * @url http://www.phpdoctrine.com + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @version $Id$ + */ +class Doctrine_DB_Mssql extends Doctrine_DB { + +} diff --git a/lib/Doctrine/DB/Mysql.php b/lib/Doctrine/DB/Mysql.php new file mode 100644 index 000000000..073d30ebc --- /dev/null +++ b/lib/Doctrine/DB/Mysql.php @@ -0,0 +1,32 @@ +. + */ +Doctrine::autoload('Doctrine_DB'); +/** + * @package Doctrine + * @url http://www.phpdoctrine.com + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @version $Id$ + */ +class Doctrine_DB_Mysql extends Doctrine_DB { + +} diff --git a/lib/Doctrine/DB/Oracle.php b/lib/Doctrine/DB/Oracle.php new file mode 100644 index 000000000..4373ffedc --- /dev/null +++ b/lib/Doctrine/DB/Oracle.php @@ -0,0 +1,32 @@ +. + */ +Doctrine::autoload('Doctrine_DB'); +/** + * @package Doctrine + * @url http://www.phpdoctrine.com + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @version $Id$ + */ +class Doctrine_DB_Oracle extends Doctrine_DB { + +} diff --git a/lib/Doctrine/DB/Pgsql.php b/lib/Doctrine/DB/Pgsql.php new file mode 100644 index 000000000..5ddcc03a1 --- /dev/null +++ b/lib/Doctrine/DB/Pgsql.php @@ -0,0 +1,32 @@ +. + */ +Doctrine::autoload('Doctrine_DB'); +/** + * @package Doctrine + * @url http://www.phpdoctrine.com + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @version $Id$ + */ +class Doctrine_DB_Pgsql extends Doctrine_DB { + +} diff --git a/lib/Doctrine/DB/Sqlite.php b/lib/Doctrine/DB/Sqlite.php new file mode 100644 index 000000000..fcbfd67bd --- /dev/null +++ b/lib/Doctrine/DB/Sqlite.php @@ -0,0 +1,32 @@ +. + */ +Doctrine::autoload('Doctrine_DB'); +/** + * @package Doctrine + * @url http://www.phpdoctrine.com + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @version $Id$ + */ +class Doctrine_DB_Sqlite extends Doctrine_DB { + +}