Welcome Guest, Not a member yet? Register   Sign In
PostgreSQL And the DB Driver
#1

[eluser]xoRiZ[/eluser]
Just thought I would mention that it would be useful to change the search path in a query ran, incase you're not using the default schema.

To resolve the problem I ran into I simply modified this function in my DB_driver.php

Code:
function simple_query($sql)
    {
        if ( ! $this->conn_id)
        {
            $this->initialize();
        }
        if ($this->dbdriver=='postgre') { $sql = 'SET search_path TO '.$this->database.', public; '.$sql; }
        
        return $this->_execute($sql);
    }

Maybe there's an alternate method?


Messages In This Thread
PostgreSQL And the DB Driver - by El Forum - 11-13-2008, 05:12 PM
PostgreSQL And the DB Driver - by El Forum - 12-02-2008, 01:37 PM



Theme © iAndrew 2016 - Forum software by © MyBB