Last chance! 50% off unlimited learning
Sale ends in
.SQL92Keywords
and reflects the SQL ANSI/ISO standard as
documented in "X/Open SQL and RDA", 1994, ISBN 1-872630-68-8.
Users can easily override or update this vector.SQLite does not add keywords to the SQL 92 standard.
See the Database Interface definition document
DBI.pdf
in the base directory of this package
or
SQLite
,
dbReadTable
,
dbWriteTable
,
dbExistsTable
,
dbRemoveTable
,
dbListTables
.# This example shows how we could export a bunch of data.frames
# into tables on a remote database.
con <- dbConnect("SQLite", dbname = "sqlite.db")
export <- c("trantime.email", "trantime.print", "round.trip.time.email")
tabs <- make.db.names(export, unique = T, allow.keywords = T)
for(i in seq(along = export) )
dbWriteTable(con, name = tabs[i], get(export[i]))
Run the code above in your browser using DataLab