Database interface meta-data
dbGetInfo-methods.RdThese methods are straight-forward implementations of the corresponding generic functions.
Methods
- dbObj
any object that implements some functionality in the R/S-Plus interface to databases (a driver, a connection or a result set).
- res
an
PostgreSQLResult.- ...
currently not being used.
References
See the Database Interface definition document
DBI.pdf in the base directory of this package
or https://cran.r-project.org/package=DBI.
Note
nullOk in dbColumnInfo was changed. Now it may be TRUE, FALSE, or NA; the column may be totally deleted in future releases;
Examples
if (FALSE) { # \dontrun{
drv <- dbDriver("PostgreSQL")
con <- dbConnect(drv, user= "user", password="password", dbname="sample")
dbListTables(con)
rs <- dbSendQuery(con, query.sql)
dbGetStatement(rs)
dbHasCompleted(rs)
info <- dbGetInfo(rs)
names(dbGetInfo(drv))
# DBIConnection info
names(dbGetInfo(con))
# DBIResult info
names(dbGetInfo(rs))
} # }