I\'m new using postgresql and I\'ve been using Codeigniter for a year.
I have a small postgresql database and I wanna call it from Codeigniter.
In my databas
Remove the 'dsn' string and change to 'dbdriver' => 'postgre'
in the config array.
Despite the CI docs stating the value should be 'postgres'
if you check the directory and file names in system>database>drivers
the folder is actually called 'postgre'
, the file name 'postgre_driver.php'
and the class 'CI_DB_postgre_driver'
so we can assume the docs are wrong here. Weird this hasnt raised its ugly head before