嘗試爲我的應用程序進行設置。但是,我無法爲它創建數據庫。CodeIgniter dbutil - 創建數據庫的麻煩
如果我手動創建數據庫,一切都很好。
如果數據庫是不存在的,我不能做任何事情,我也得到了以下錯誤:
A Database Error Occurred Unable to select the specified database: my_db
Filename: core/Loader.php
Line Number: 232
我跟隨dbutil guide。
我的代碼:
function index()
{
$db_exists = FALSE;
$this->load->dbutil();
if( $this->dbutil->database_exists('my_db')){
$db_exists = TRUE;
}
}
按照指導,我讓我的數據庫驅動程序在應用程序中運行/配置/ autoload.php
$autoload['libraries'] = array('database', 'datamapper');
我甚至沒有考慮!感謝一堆:) – AmberKayle 2011-05-16 14:35:02