diff options
author | admin <devnull@localhost> | 2006-09-25 23:06:46 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-25 23:06:46 +0200 |
commit | 83b05a860a5f208d15942b517385848cfe4887bb (patch) | |
tree | da87851bb10fd9bdf913fb8bca9d726fb0083423 /system/database/drivers/sqlite | |
parent | 6cec6a58d993fb0b1beb5fac7ea0d1cb9769c0a4 (diff) |
Diffstat (limited to 'system/database/drivers/sqlite')
-rw-r--r-- | system/database/drivers/sqlite/sqlite_utility.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/system/database/drivers/sqlite/sqlite_utility.php b/system/database/drivers/sqlite/sqlite_utility.php index 14b406a5c..754a755e4 100644 --- a/system/database/drivers/sqlite/sqlite_utility.php +++ b/system/database/drivers/sqlite/sqlite_utility.php @@ -43,11 +43,11 @@ class CI_DB_sqlite_utility extends CI_DB_utility { /** * Drop database * - * @access public + * @access private * @param string the database name * @return bool */ - function drop_database($name) + function _drop_database($name) { if ( ! @file_exists($this->db->database) OR ! @unlink($this->db->database)) { @@ -65,10 +65,10 @@ class CI_DB_sqlite_utility extends CI_DB_utility { /** * List databases * - * @access public + * @access private * @return bool */ - function list_databases() + function _list_databases() { if ($this->db_debug) { @@ -82,10 +82,10 @@ class CI_DB_sqlite_utility extends CI_DB_utility { /** * Drop Table * - * @access public + * @access private * @return bool */ - function drop_table($table) + function _drop_table($table) { if ($this->db_debug) { |