Skip to content

Most pool methods for DBI generics check out a connection, perform the operation, and the return the connection to the pool, as described in DBI-wrap.

This page describes the exceptions:

Usage

# S4 method for Pool
dbSendQuery(conn, statement, ...)

# S4 method for Pool,ANY
dbSendStatement(conn, statement, ...)

# S4 method for Pool
dbDisconnect(conn, ...)

# S4 method for Pool
dbGetInfo(dbObj, ...)

# S4 method for Pool
dbIsValid(dbObj, ...)

# S4 method for Pool
dbBegin(conn, ...)

# S4 method for Pool
dbCommit(conn, ...)

# S4 method for Pool
dbRollback(conn, ...)

# S4 method for Pool
dbWithTransaction(conn, code)

Arguments

conn, dbObj

A Pool object, as returned from dbPool().

statement, code, ...

See DBI documentation.