summary {RSQLite} | R Documentation |
Summary methods
## S4 method for signature 'SQLiteDriver' summary(object) ## S4 method for signature 'SQLiteConnection' summary(object) ## S4 method for signature 'SQLiteResult' summary(object)
verbose |
Show extra information. |
summary(SQLite()) con <- dbConnect(SQLite()) summary(con) dbWriteTable(con, "mtcars", mtcars) rs <- dbSendQuery(con, "SELECT * FROM mtcars") summary(rs) dbClearResult(rs) dbDisconnect(con)