| dbListTables {DBI} | R Documentation |
This should, where possible, include temporary tables.
dbListTables(conn, ...)
conn |
A |
... |
Other parameters passed on to methods. |
a character vector. If no tables present, a character vector of length 0.
Other DBIConnection generics: DBIConnection-class,
dbDataType, dbDisconnect,
dbExecute, dbExistsTable,
dbGetException, dbGetInfo,
dbGetQuery, dbIsValid,
dbListFields, dbListResults,
dbReadTable, dbRemoveTable,
dbSendQuery, dbSendStatement
con <- dbConnect(RSQLite::SQLite(), ":memory:") dbListTables(con) dbWriteTable(con, "mtcars", mtcars) dbListTables(con) dbDisconnect(con)