PostgresConnection::setTablePrefix()

void setTablePrefix(string $prefix) Set the table prefix in use by the connection. Parameters string $prefix Return Value void

PostgresConnection::statement()

bool statement(string $query, array $bindings = array()) Execute an SQL statement and return the boolean result. Parameters string $query array $bindings Return Value bool

PostgresConnection::table()

Builder table(string $table) Begin a fluent query against a database table. Parameters string $table Return Value Builder

PostgresConnection::transaction()

mixed transaction(Closure $callback) Execute a Closure within a transaction. Parameters Closure $callback Return Value mixed Exceptions Throwable

PostgresConnection::transactionLevel()

int transactionLevel() Get the number of active transactions. Return Value int

PostgresConnection::unprepared()

bool unprepared(string $query) Run a raw, unprepared query against the PDO connection. Parameters string $query Return Value bool

PostgresConnection::update()

int update(string $query, array $bindings = array()) Run an update statement against the database. Parameters string $query array $bindings Return Value int

PostgresConnection::useDefaultPostProcessor()

void useDefaultPostProcessor() Set the query post processor to the default implementation. Return Value void

PostgresConnection::useDefaultQueryGrammar()

void useDefaultQueryGrammar() Set the query grammar to the default implementation. Return Value void

PostgresConnection::useDefaultSchemaGrammar()

void useDefaultSchemaGrammar() Set the schema grammar to the default implementation. Return Value void