CodeIgniter PDO database driver not working

前端 未结 4 788
梦如初夏
梦如初夏 2021-01-04 09:35

I\'m trying to use the PDO MySQL driver in my CodeIgniter application. This is my database config:

$active_group = \'default\';
$active_record = TRUE;

$db[\         


        
4条回答
  •  孤街浪徒
    2021-01-04 09:54

    This should not be the case.

    localhost;dbname=testdatabase
    

    should be

    mysql:dbname=testdatabase;host=localhost;
    

提交回复
热议问题