summary {RSQLite}R Documentation

Summary methods

Description

Summary methods

Usage

## S4 method for signature 'SQLiteDriver'
summary(object)

## S4 method for signature 'SQLiteConnection'
summary(object)

## S4 method for signature 'SQLiteResult'
summary(object)

Arguments

verbose

Show extra information.

Examples

summary(SQLite())

con <- dbConnect(SQLite())
summary(con)

dbWriteTable(con, "mtcars", mtcars)
rs <- dbSendQuery(con, "SELECT * FROM mtcars")
summary(rs)

dbClearResult(rs)
dbDisconnect(con)

[Package RSQLite version 1.0.0 Index]