RSQLite (version 0.3-1)

isIdCurrent: Check whether an dbObjectId handle object is valid or not

Description

Support function that verifies that an dbObjectId holding a reference to a foreign object is still valid for communicating with the RDBMS

Usage

isIdCurrent(obj)

Arguments

obj
any dbObjectId (e.g., dbDriver, dbConnection, dbResult).

Value

  • a logical scalar.

Details

dbObjectId are R/S-Plus remote references to foreign (C code) objects. This introduces differences to the object's semantics such as persistence (e.g., connections may be closed unexpectedly), thus this function provides a minimal verification to ensure that the foreign object being referenced can be contacted.

See Also

dbDriver dbConnect dbSendQuery dbGetQuery fetch

Examples

Run this code
cursor <- dbSendQuery(con, sql.statement)
isIdCurrent(cursor)

Run the code above in your browser using DataCamp Workspace