diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-03-18 13:22:07 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-03-18 13:22:07 +0100 |
commit | e3a0b2b4cba04f4f0925b6b16d15416aa66e8a85 (patch) | |
tree | dc8c615741d5bee4ae36b93b5c0389650a2f3aa2 /system/database/drivers/pdo/pdo_driver.php | |
parent | 9127b9cb4039ecdac621403e709a2ef408de9f73 (diff) | |
parent | 4a80154b0bb28df04d407d3d3d83e112808b25d4 (diff) |
Merge pull request #1060 from toopay/pdo_meta
Fixed meta table method(s) for PDO
Diffstat (limited to 'system/database/drivers/pdo/pdo_driver.php')
-rw-r--r-- | system/database/drivers/pdo/pdo_driver.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/system/database/drivers/pdo/pdo_driver.php b/system/database/drivers/pdo/pdo_driver.php index 09764779a..658a3d5a0 100644 --- a/system/database/drivers/pdo/pdo_driver.php +++ b/system/database/drivers/pdo/pdo_driver.php @@ -561,6 +561,11 @@ class CI_DB_pdo_driver extends CI_DB { // Analog function to show all tables in postgre $sql = "SELECT * FROM information_schema.tables WHERE table_schema = 'public'"; } + elseif ($this->pdodriver == 'sqlite') + { + // Analog function to show all tables in sqlite + $sql = "SELECT name FROM sqlite_master WHERE type='table' AND name NOT LIKE 'sqlite_%'"; + } else { $sql = "SHOW TABLES FROM `".$this->database."`"; @@ -603,6 +608,22 @@ class CI_DB_pdo_driver extends CI_DB { */ function _field_data($table) { + if ($this->pdodriver == 'mysql' or $this->pdodriver == 'pgsql') + { + // Analog function for mysql and postgre + return 'SELECT * FROM '.$this->_from_tables($table).' LIMIT 1'; + } + elseif ($this->pdodriver == 'oci') + { + // Analog function for oci + return 'SELECT * FROM '.$this->_from_tables($table).' WHERE ROWNUM <= 1'; + } + elseif ($this->pdodriver == 'sqlite') + { + // Analog function for sqlite + return 'PRAGMA table_info('.$this->_from_tables($table).')'; + } + return 'SELECT TOP 1 FROM '.$this->_from_tables($table); } |