笨显示错误:没有数据库中选择(Codeigniter showing error: No datab

2019-09-02 01:34发布

我使用CodeIgniter的DBForge类创建该数据库内的数据库和表。

这里是代码:

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);
}

上述代码是控制器的指数函数内写入。 当执行下面的代码,它显示了作为错误编号数据库中选择 。 有没有人有原因是什么,蚂蚁的想法。 任何帮助表示赞赏。

Answer 1:

你需要指定

 $db['default']['database'] = "new_db"; 

在为database.php



Answer 2:

只是参考里面的应用程序/ config文件夹为database.php文件。 请确保您有数据库的名称和正确的价值观其他的东西存在于database.php中文件中以下行

$db['default'] = array(
'dsn'   => '',
'hostname' => 'localhost',
'username' => 'your username', //By default it is root
'password' => 'your password', //By default this field is empty
'database' => 'database name',//The error that you are getting is because of this only. Specify your database name here
'dbdriver' => 'mysqli',

希望能帮助到你



Answer 3:

如果设置在配置/ database.php中默认的数据库和它仍然没有工作,你或许应该保存在您忘记这样做的文件。



文章来源: Codeigniter showing error: No database selected