db->display_error('db_unsuported_feature'); } /** * * 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 * * @access private * @param string the database name * @return bool */ function _create_database($name) { return "CREATE DATABASE ".$name; } // -------------------------------------------------------------------- /** * Drop database * * @access private * @param string the database name * @return bool */ function _drop_database($name) { return "DROP DATABASE ".$name; } } /* End of file postgre_utility.php */ /* Location: ./system/database/drivers/postgre/postgre_utility.php */