1
我正在使用Codeigniter的DBForge類在該數據庫內創建數據庫和表。Codeigniter顯示錯誤:未選擇數據庫
這裏是代碼:
if ($this->dbforge->create_database('new_db')) {
$fields = array(
'blog_id' => array(
'type' => 'INT',
'constraint' => 5,
'unsigned' => TRUE,
'auto_increment' => TRUE
),
'blog_title' => array(
'type' => 'VARCHAR',
'constraint' => '100',
),
'blog_author' => array(
'type' => 'VARCHAR',
'constraint' => '100',
'default' => 'King of Town',
),
'blog_description' => array(
'type' => 'TEXT',
'null' => TRUE,
),
);
$this->dbforge->add_field($fields);
$this->dbforge->add_key('blog_id', TRUE);
$this->dbforge->create_table('blog', TRUE);
}
上面提到的代碼是控制器的指數函數內寫入。執行以下代碼時,顯示錯誤爲:未選擇數據庫。有沒有人有螞蟻的想法爲什麼發生。任何幫助表示讚賞。