mysqli::real_connect(): (HY000/1049): Unknown database error in codeigniter

前端 未结 3 2039
天涯浪人
天涯浪人 2021-01-07 04:16

I\'m new to Codeigniter PHP framework. When I\'m testing my application I get \'Unknown database db_name\' error. I have browsed through several sites but didn\'t found solu

3条回答
  •  隐瞒了意图╮
    2021-01-07 04:49

    I was too getting this error. There are 2 fields in application/config/database.php file that should match up with your actual database:

    'char_set' => 'utf8',
    'dbcollat' => 'utf8_general_ci',
    

    Make sure, the actual DB is of the same type & char_set as mentioned in the above file.

提交回复
热议问题