SQL Server Connection class
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | ## S4 method for signature 'SQLServerConnection'
dbGetInfo(dbObj, ...)
## S4 method for signature 'SQLServerConnection'
dbIsValid(dbObj, ...)
## S4 method for signature 'SQLServerConnection'
dbDisconnect(conn, ...)
## S4 method for signature 'SQLServerConnection,character'
dbSendQuery(conn, statement,
params = NULL, ..., batch = FALSE)
## S4 method for signature 'SQLServerConnection,character'
dbSendStatement(conn, statement,
params = NULL, ..., batch = FALSE)
dbSendUpdate(conn, statement, ...)
## S4 method for signature 'SQLServerConnection,character'
dbReadTable(conn, name, ...)
## S4 method for signature 'SQLServerConnection'
dbDataType(dbObj, obj, ...)
## S4 method for signature 'SQLServerConnection'
dbListTables(conn, pattern = "%", ...)
## S4 method for signature 'SQLServerConnection'
dbExistsTable(conn, name, ...)
## S4 method for signature 'SQLServerConnection'
dbRemoveTable(conn, name, ...)
## S4 method for signature 'SQLServerConnection'
dbBegin(conn, ...)
## S4 method for signature 'SQLServerConnection'
dbCommit(conn, ...)
## S4 method for signature 'SQLServerConnection'
dbRollback(conn, ...)
## S4 method for signature 'SQLServerConnection'
dbWriteTable(conn, name, value,
row.names = NA, overwrite = FALSE, append = FALSE, field.types = NULL,
temporary = FALSE, batch = FALSE)
## S4 method for signature 'SQLServerConnection'
sqlCreateTable(con, table, fields,
row.names = NA, temporary = FALSE, ...)
|
batch |
logical, indicates whether uploads (e.g., 'INSERT' or 'UPDATE') should be uploaded in batches, potentially much faster than by individual rows (the default). |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.