PostgresConnection::selectOne()

mixed selectOne(string $query, array $bindings = array()) Run a select statement and return a single result. Parameters string $query array $bindings Return Value mixed

PostgresConnection::setDatabaseName()

string setDatabaseName(string $database) Set the name of the connected database. Parameters string $database Return Value string

PostgresConnection::setEventDispatcher()

void setEventDispatcher(Dispatcher $events) Set the event dispatcher instance on the connection. Parameters Dispatcher $events Return Value void

PostgresConnection::setFetchMode()

int setFetchMode(int $fetchMode) Set the default fetch mode for the connection. Parameters int $fetchMode Return Value int

PostgresConnection::setPdo()

$this setPdo(PDO|null $pdo) Set the PDO connection. Parameters PDO|null $pdo Return Value $this Exceptions RuntimeException

PostgresConnection::setPostProcessor()

void setPostProcessor(Processor $processor) Set the query post processor used by the connection. Parameters Processor $processor Return Value void

PostgresConnection::setQueryGrammar()

void setQueryGrammar(Grammar $grammar) Set the query grammar used by the connection. Parameters Grammar $grammar Return Value void

PostgresConnection::setReadPdo()

$this setReadPdo(PDO|null $pdo) Set the PDO connection used for reading. Parameters PDO|null $pdo Return Value $this

PostgresConnection::setReconnector()

$this setReconnector(callable $reconnector) Set the reconnect instance on the connection. Parameters callable $reconnector Return Value $this

PostgresConnection::setSchemaGrammar()

void setSchemaGrammar(Grammar $grammar) Set the schema grammar used by the connection. Parameters Grammar $grammar Return Value void