Class SQLiteConnection (and methods)
Source:R/SQLiteConnection.R
, R/dbAppendTable_SQLiteConnection.R
, R/dbDataType_SQLiteConnection.R
, and 13 more
SQLiteConnection-class.Rd
SQLiteConnection objects are created by passing SQLite()
as first
argument to DBI::dbConnect()
.
They are a superclass of the DBI::DBIConnection class.
The "Usage" section lists the class methods overridden by RSQLite.
Usage
# S3 method for class 'SQLiteConnection'
format(x, ...)
# S4 method for class 'SQLiteConnection'
dbAppendTable(conn, name, value, ..., row.names = NULL)
# S4 method for class 'SQLiteConnection'
dbDataType(dbObj, obj, ...)
# S4 method for class 'SQLiteConnection,Id'
dbExistsTable(conn, name, ...)
# S4 method for class 'SQLiteConnection,character'
dbExistsTable(conn, name, ...)
# S4 method for class 'SQLiteConnection'
dbGetException(conn, ...)
# S4 method for class 'SQLiteConnection'
dbGetInfo(dbObj, ...)
# S4 method for class 'SQLiteConnection'
dbIsValid(dbObj, ...)
# S4 method for class 'SQLiteConnection'
dbListTables(conn, ...)
# S4 method for class 'SQLiteConnection,SQL'
dbQuoteIdentifier(conn, x, ...)
# S4 method for class 'SQLiteConnection,character'
dbQuoteIdentifier(conn, x, ...)
# S4 method for class 'SQLiteConnection,character'
dbRemoveTable(conn, name, ..., temporary = FALSE, fail_if_missing = TRUE)
# S4 method for class 'SQLiteConnection,character'
dbSendQuery(conn, statement, params = NULL, ...)
# S4 method for class 'SQLiteConnection,SQL'
dbUnquoteIdentifier(conn, x, ...)
# S4 method for class 'SQLiteConnection'
show(object)
# S4 method for class 'SQLiteConnection'
sqlData(
con,
value,
row.names = pkgconfig::get_config("RSQLite::row.names.query", FALSE),
...
)
Arguments
- temporary
If
TRUE
, only temporary tables are considered.- fail_if_missing
If
FALSE
,dbRemoveTable()
succeeds if the table doesn't exist.
See also
The corresponding generic functions
DBI::dbSendQuery()
, DBI::dbGetQuery()
,
DBI::dbSendStatement()
, DBI::dbExecute()
,
DBI::dbExistsTable()
, DBI::dbListTables()
, DBI::dbListFields()
,
DBI::dbRemoveTable()
, and DBI::sqlData()
.