Public Member Functions | |
| _list_databases () | |
| _optimize_table ($table) | |
| _repair_table ($table) | |
| _backup ($params=array()) | |
| _create_database () | |
| _drop_database ($name) | |
| CI_DB_sqlite_utility::_backup | ( | $ | params = array() |
) |
SQLite Export
private
| array | Preferences |
| CI_DB_sqlite_utility::_create_database | ( | ) |
The functions below have been deprecated as of 1.6, and are only here for backwards compatibility. They now reside in dbforge(). The use of dbutils for database manipulation is STRONGLY discouraged in favour if using dbforge. Create database
public
| string | the database name |
| CI_DB_sqlite_utility::_drop_database | ( | $ | name | ) |
Drop database
private
| string | the database name |
| CI_DB_sqlite_utility::_list_databases | ( | ) |
List databases
I don't believe you can do a database listing with SQLite since each database is its own file. I suppose we could try reading a directory looking for SQLite files, but that doesn't seem like a terribly good idea
private
| CI_DB_sqlite_utility::_optimize_table | ( | $ | table | ) |
Optimize table query
Is optimization even supported in SQLite?
private
| string | the table name |
| CI_DB_sqlite_utility::_repair_table | ( | $ | table | ) |
Repair table query
Are table repairs even supported in SQLite?
private
| string | the table name |
1.5.7.1