Displaying 1 result from an estimated 1 matches for "dbconnectionok".
Did you mean:
dbconnection
2001 Mar 19
3
generic database access methods
...UseMethod("dbReconnect")
#
# The conn object should store the options passed to dbConnect so that
# it can reestablish the connection.
#
dbReconnect.default <- function(conn) stop("Invalid connection object")
#
# User passed something other than a defined connection class
#
dbConnectionOK <- function(conn) UseMethod("dbConnectionOK")
#
# Returns TRUE if the connection object is valid and the connection
# can be used to communicate with the database backend.
#
dbConnectionOK.default <- function(conn) FALSE
#
# User passed something other than a defined connection cla...