powered by
dbConnect
dbGetQuery
dbWriteTable
dbDisconnect
Formal specification (currently work in progress and incomplete): DBIspec
con <- dbConnect(RSQLite::SQLite(), ":memory:") dbWriteTable(con, "iris", iris) dbGetQuery(con, "SELECT * FROM iris WHERE [Petal.Width] > 2.3") dbDisconnect(con)
Run the code above in your browser using DataLab