PostgresConnection::disconnect()

void disconnect() Disconnect from the underlying PDO connection. Return Value void

PostgresConnection::disableQueryLog()

void disableQueryLog() Disable the query log on the connection. Return Value void

PostgresConnection::delete()

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

PostgresConnection::commit()

void commit() Commit the active database transaction. Return Value void

PostgresConnection::beginTransaction()

void beginTransaction() Start a new database transaction. Return Value void Exceptions Exception

PostgresConnection::affectingStatement()

int affectingStatement(string $query, array $bindings = array()) Run an SQL statement and get the number of rows affected. Parameters string $query array $bindings Return Value int

PostgresConnection

PostgresConnection class PostgresConnection extends Connection (View source) Traits DetectsLostConnections

PostgresBuilder::__construct()

void __construct(Connection $connection) Create a new database Schema manager. Parameters Connection $connection Return Value void

PostgresBuilder::table()

Blueprint table(string $table, Closure $callback) Modify a table on the schema. Parameters string $table Closure $callback Return Value Blueprint

PostgresBuilder::setConnection()

$this setConnection(Connection $connection) Set the database connection instance. Parameters Connection $connection Return Value $this