RSQLite (version 0.7-0)

dbObjectId-class: Class dbObjectId

Description

A helper (mixin) class to provide external references in an R/S-Plus portable way.

Arguments

Objects from the Class

A virtual Class: No objects may be created from it.

Examples

Run this code
sqlite <- dbDriver("SQLite")
  con <- dbConnect(sqlite, ":memory:")
  is(sqlite, "dbObjectId")   ## True
  is(con, "dbObjectId")  ## True
  isIdCurrent(con)       ## True
  dbDisconnect(con)
  isIdCurrent(con)       ## False

Run the code above in your browser using DataCamp Workspace