Learn R Programming

pool (version 0.1.6)

DBI-connection-sql: Creating and manipulating SQL tables.

Description

Pool object wrappers around DBIConnection methods that deal with the creation and manipulation of SQL tables. See DBI::sqlData(), DBI::sqlCreateTable() and DBI::sqlAppendTable() for the original documentation.

Usage

# S4 method for Pool
sqlData(con, value, row.names = NA, ...)

# S4 method for Pool sqlCreateTable(con, table, fields, row.names = NA, temporary = FALSE, ...)

# S4 method for Pool sqlAppendTable(con, table, values, row.names = NA, ...)

Arguments

con, value, row.names, ...

See DBI::sqlData().

table, fields, temporary

See DBI::sqlCreateTable().

values

See DBI::sqlAppendTable().