Internal {TSodbc} | R Documentation |
Pretend TSodbc has DBI methods for connections.
## S4 method for signature 'odbcDriver' dbConnect(drv, dbname, ...) ## S4 method for signature 'odbcConnection' dbDisconnect(conn,...) ## S4 method for signature 'RODBC,character,ANY' dropTStable(con, Table, yesIknowWhatIamDoing=FALSE) ## S4 method for signature 'RODBC,character' dbExistsTable(conn, name, ...) ## S4 method for signature 'RODBC,character' dbRemoveTable(conn, name, ...) ## S4 method for signature 'RODBC,character' dbGetQuery(conn, statement, ...) ## S4 method for signature 'RODBC' dbListTables(conn,...)
drv |
a database driver object. |
dbname |
a character string indicating the name of a database. |
conn |
a database connection object. |
name |
A database table. |
statement |
Character string with an SQL statement. |
yesIknowWhatIamDoing |
logical to help prevent accidents. |
... |
Arguments passed to methods. |
These methods just fake DBI connections.
Depends.