CodeIgniter PDO database driver not working

前端 未结 4 809
梦如初夏
梦如初夏 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条回答
  •  梦毁少年i
    2021-01-04 09:54

    On file /application/config/database.php where is

    $db['default']['hostname'] = 'localhost';
    

    must be

    $db['default']['hostname'] = 'mysql:host=localhost';
    

    localhost or your database host.

提交回复
热议问题