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 class 'Pool'
dbSendQuery(conn, statement, ...)

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

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

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

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

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

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

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

# S4 method for class 'Pool'
dbWithTransaction(conn, code)

Arguments

conn, dbObj

A Pool object, as returned from dbPool().

statement, code, ...

See DBI documentation.