I am trying to migrate from mysql to postgres in codeigniter. I have updated my database.php file
$db['default']['hostname'] = 'pgsql:host=localhost;dbname=mydb';
$db['default']['username'] = 'postgres';
$db['default']['password'] = 'myPass23';
$db['default']['database'] = 'mydb';
$db['default']['dbdriver'] = 'pdo';
I am getting a blank page whenever db call is being made after the migration. No error/No logs are being shown. Do I need to make the changes anywhere else too. Any help will be highly appreciated.
$in first line. Is it copy paste mistake??