

Public Member Functions | |
| _list_databases () | |
| List databases. | |
| _optimize_table ($table) | |
| Optimize table query. | |
| _repair_table ($table) | |
| Repair table query. | |
| _backup ($params=array()) | |
| Oracle Export. | |
| _create_database ($name) | |
| The functions below have been deprecated as of 1.6, and are only here for backwards compatibility. | |
| _drop_database ($name) | |
| Drop database. | |
Definition at line 25 of file oci8_utility.php.
| CI_DB_oci8_utility::_backup | ( | $ | params = array() |
) |
Oracle Export.
private
| array | Preferences |
Definition at line 79 of file oci8_utility.php.
00080 { 00081 // Currently unsupported 00082 return $this->db->display_error('db_unsuported_feature'); 00083 }
| CI_DB_oci8_utility::_create_database | ( | $ | name | ) |
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 |
Definition at line 100 of file oci8_utility.php.
| CI_DB_oci8_utility::_drop_database | ( | $ | name | ) |
Drop database.
private
| string | the database name |
Definition at line 114 of file oci8_utility.php.
| CI_DB_oci8_utility::_list_databases | ( | ) |
| CI_DB_oci8_utility::_optimize_table | ( | $ | table | ) |
Optimize table query.
Generates a platform-specific query so that a table can be optimized
private
| string | the table name |
Definition at line 49 of file oci8_utility.php.
| CI_DB_oci8_utility::_repair_table | ( | $ | table | ) |
Repair table query.
Generates a platform-specific query so that a table can be repaired
private
| string | the table name |
Definition at line 65 of file oci8_utility.php.