Welcome Guest, Not a member yet? Register   Sign In
HHVM + Postgres Driver
#1

(This post was last modified: 05-22-2015, 09:25 AM by no1youknowz.)

Just wanted to put this here, in case anyone else comes up with the same issue.

Running HHVM + the Postgres driver from PocketRent. It does not support the function pg_set_client_encoding.

Code:
\nFatal error: Call to unimplemented native function pg_set_client_encoding() in system/database/drivers/postgre/postgre_driver.php on line 200

Change:

PHP Code:
protected function _db_set_charset($charset)

{
    return (
pg_set_client_encoding($this->conn_id$charset) === 0);


To:

PHP Code:
protected function _db_set_charset($charset)

{
    return 
pg_query($this->conn_id"set client_encoding to '$charset'");


Now you don't get the error. Smile
Reply




Theme © iAndrew 2016 - Forum software by © MyBB