extends abstract class Phalcon\Db\Adapter\Pdo
implements Phalcon\Events\EventsAwareInterface, Phalcon\Db\AdapterInterface
Source on GitHub
Specific functions for the Postgresql database system
use Phalcon\Db\Adapter\Pdo\Postgresql;
$config = [
'host' => 'localhost',
'dbname' => 'blog',
'port' => 5432,
'username' => 'postgres',
'password' => 'secret'
];
$connection = new Postgresql($config);
Methods
public connect ([array $descriptor])
This method is