

Public Member Functions | |
| _list_databases () | |
| List databases. | |
| _optimize_table ($table) | |
| Optimize table query. | |
| _repair_table ($table) | |
| Repair table query. | |
| _backup ($params=array()) | |
| Postgre 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 postgre_utility.php.
| CI_DB_postgre_utility::_backup | ( | $ | params = array() |
) |
Postgre Export.
private
| array | Preferences |
Definition at line 79 of file postgre_utility.php.
00080 { 00081 // Currently unsupported 00082 return $this->db->display_error('db_unsuported_feature'); 00083 }
| CI_DB_postgre_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 private
| string | the database name |
Definition at line 100 of file postgre_utility.php.
| CI_DB_postgre_utility::_drop_database | ( | $ | name | ) |
Drop database.
private
| string | the database name |
Definition at line 114 of file postgre_utility.php.
| CI_DB_postgre_utility::_list_databases | ( | ) |
| CI_DB_postgre_utility::_optimize_table | ( | $ | table | ) |
Optimize table query.
Is table optimization supported in Postgre?
private
| string | the table name |
Definition at line 49 of file postgre_utility.php.
| CI_DB_postgre_utility::_repair_table | ( | $ | table | ) |
Repair table query.
Are table repairs supported in Postgre?
private
| string | the table name |
Definition at line 65 of file postgre_utility.php.