search for: dbreconnect

Displaying 1 result from an estimated 1 matches for "dbreconnect".

Did you mean: dbconnect
2001 Mar 19
3
generic database access methods
...quot;Invalid database class") # # User passed something other than a defined database class # dbDisconnect <- function(conn) UseMethod("dbDisconnect") # # Close connection and free resources # dbDisconnect.default <- function(conn) stop("Invalid connection object") dbReconnect <- function(conn) 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 define...