I get following message with Postgre insert_id
A PHP Error was encountered
Severity: Warning
Message: Illegal string offset 'server'
Filename: postgre/postgre_driver.php
Line Number: 331
$v = $this->_version();
$v = $v['server'];
function _version()
{
return "SELECT version() AS ver";
}
Just wanted to update...
I replaced the insert_id function with the new bits from 3.x code which resolved the issue:
I get following message with Postgre insert_id
A PHP Error was encountered
Severity: Warning
Message: Illegal string offset 'server'
Filename: postgre/postgre_driver.php
Line Number: 331
$v = $this->_version();
$v = $v['server'];
function _version()
{
return "SELECT version() AS ver";
}
I replaced the insert_id function with the new bits from 3.x code which resolved the issue: