R/level0.R

Defines functions dbDataSet dbCreateGMDatabase

dbDataSet <- function(...) {
  

}

dbCreateGMDatabase <- function(con) {
sql<-
"
CREATE TABLE IF NOT EXISTS gmObjects (
   gmID CHAR(24) PRIMARY KEY,
   gmCreateTime TIMESTAMP,
   gmObjectDescription TEXT
);
"
res<-dbSendQuery(con,sql)
}

Try the gmDatabase package in your browser

Any scripts or data that you put into this service are public.

gmDatabase documentation built on May 2, 2019, 9:31 a.m.