diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-04-09 13:58:28 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-04-09 13:58:28 +0200 |
commit | d947eba0bdaf9d86401fdcba9e97706905cacf9d (patch) | |
tree | 457928871f3d4622012dcbaac9260a2489b15c2d /system/database/drivers/sqlite3/sqlite3_utility.php | |
parent | a254836a611e8f555ea4bbc84e500c7040ebae4e (diff) |
Multiple DB Forge improvements
- Replaced driver methods _create_database(), _drop_database(), _drop_table() and _rename_table() with properties
- Added defaults for the above mentioned platform-specific queries, so that not all drivers need to define them
- Improved support for the SQLite, ODBC and PDO drivers
Diffstat (limited to 'system/database/drivers/sqlite3/sqlite3_utility.php')
-rw-r--r-- | system/database/drivers/sqlite3/sqlite3_utility.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/system/database/drivers/sqlite3/sqlite3_utility.php b/system/database/drivers/sqlite3/sqlite3_utility.php index a4dc875e1..ffb5bac0b 100644 --- a/system/database/drivers/sqlite3/sqlite3_utility.php +++ b/system/database/drivers/sqlite3/sqlite3_utility.php @@ -16,12 +16,12 @@ * through the world wide web, please send an email to * licensing@ellislab.com so we can send you a copy immediately. * - * @package CodeIgniter - * @author EllisLab Dev Team + * @package CodeIgniter + * @author EllisLab Dev Team * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/) - * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * @link http://codeigniter.com - * @since Version 1.0 + * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) + * @link http://codeigniter.com + * @since Version 1.0 * @filesource */ |