Description Available virtual tables Author(s) Examples
This package uses SQLite's loadable extension feature to provide virtual tables.
You can enable all of the following virtual tables by calling the
init_virtualtables
function on an RSQLite database connection
object.
Reijo Sund <reijo.sund@helsinki.fi> Maintainer: Reijo Sund <reijo.sund@helsinki.fi>
1 2 3 4 5 6 | ## basic usage looks like this
db <- dbConnect(SQLite(), dbname = ":memory:")
init_virtualtables(db)
## now you can use virtual tables in SQL queries.
dbDisconnect(db)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.