db_type {etl} | R Documentation |
Return the database type for an ETL or DBI connection
Description
Return the database type for an ETL or DBI connection
Usage
db_type(obj, ...)
## S3 method for class 'src_dbi'
db_type(obj, ...)
## S3 method for class 'DBIConnection'
db_type(obj, ...)
Arguments
obj |
and |
... |
currently ignored |
Examples
if (require(RMySQL) && mysqlHasDefault()) {
# connect to test database using rs-dbi
db <- src_mysql_cnf()
class(db)
db
# connect to another server using the 'client' group
db_type(db)
db_type(db$con)
}
[Package etl version 0.4.1 Index]