For S4 methods that require a documentation entry but only clutter the index.
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | ## S4 method for signature 'DBIObject'
SQLKeywords(dbObj, ...)
## S4 method for signature 'missing'
SQLKeywords(dbObj, ...)
## S4 method for signature 'DBIConnection'
dbAppendTable(conn, name, value, ..., row.names = NULL)
## S4 method for signature 'DBIDriver'
dbCanConnect(drv, ...)
## S4 method for signature 'DBIConnector'
dbConnect(drv, ...)
## S4 method for signature 'DBIConnection'
dbCreateTable(conn, name, fields, ..., row.names = NULL, temporary = FALSE)
## S4 method for signature 'DBIConnector'
dbDataType(dbObj, obj, ...)
## S4 method for signature 'DBIObject'
dbDataType(dbObj, obj, ...)
## S4 method for signature 'character'
dbDriver(drvName, ...)
## S4 method for signature 'DBIConnection,character'
dbExecute(conn, statement, ...)
## S4 method for signature 'DBIConnection,Id'
dbExistsTable(conn, name, ...)
## S4 method for signature 'DBIResult'
dbFetch(res, n = -1, ...)
## S4 method for signature 'DBIConnector'
dbGetConnectArgs(drv, eval = TRUE, ...)
## S4 method for signature 'DBIResult'
dbGetInfo(dbObj, ...)
## S4 method for signature 'DBIConnection,character'
dbGetQuery(conn, statement, ..., n = -1L)
## S4 method for signature 'DBIConnector'
dbIsReadOnly(dbObj, ...)
## S4 method for signature 'DBIObject'
dbIsReadOnly(dbObj, ...)
## S4 method for signature 'DBIConnection,Id'
dbListFields(conn, name, ...)
## S4 method for signature 'DBIConnection,character'
dbListFields(conn, name, ...)
## S4 method for signature 'DBIConnection'
dbListObjects(conn, prefix = NULL, ...)
## S4 method for signature 'DBIConnection,ANY'
dbQuoteIdentifier(conn, x, ...)
## S4 method for signature 'DBIConnection,character'
dbQuoteIdentifier(conn, x, ...)
## S4 method for signature 'DBIConnection,SQL'
dbQuoteIdentifier(conn, x, ...)
## S4 method for signature 'DBIConnection,Id'
dbQuoteIdentifier(conn, x, ...)
## S4 method for signature 'DBIConnection'
dbQuoteLiteral(conn, x, ...)
## S4 method for signature 'DBIConnection,ANY'
dbQuoteString(conn, x, ...)
## S4 method for signature 'DBIConnection,character'
dbQuoteString(conn, x, ...)
## S4 method for signature 'DBIConnection,SQL'
dbQuoteString(conn, x, ...)
## S4 method for signature 'DBIConnection,Id'
dbReadTable(conn, name, ...)
## S4 method for signature 'DBIConnection,character'
dbReadTable(conn, name, ..., row.names = FALSE, check.names = TRUE)
## S4 method for signature 'DBIConnection,Id'
dbRemoveTable(conn, name, ...)
## S4 method for signature 'DBIConnection,character'
dbSendStatement(conn, statement, ...)
## S4 method for signature 'DBIConnection'
dbUnquoteIdentifier(conn, x, ...)
## S4 method for signature 'DBIConnection'
dbWithTransaction(conn, code)
## S4 method for signature 'DBIConnection,Id'
dbWriteTable(conn, name, value, ...)
## S4 method for signature 'DBIObject,character'
isSQLKeyword(
dbObj,
name,
keywords = .SQL92Keywords,
case = c("lower", "upper", "any")[3],
...
)
## S4 method for signature 'DBIObject,character'
make.db.names(
dbObj,
snames,
keywords = .SQL92Keywords,
unique = TRUE,
allow.keywords = TRUE,
...
)
## S4 method for signature 'AnsiConnection'
show(object)
## S4 method for signature 'DBIConnection'
show(object)
## S4 method for signature 'DBIConnector'
show(object)
## S4 method for signature 'DBIDriver'
show(object)
## S4 method for signature 'DBIResult'
show(object)
## S4 method for signature 'Id'
show(object)
## S4 method for signature 'SQL'
show(object)
## S4 method for signature 'DBIConnection'
sqlAppendTable(con, table, values, row.names = NA, ...)
## S4 method for signature 'DBIConnection'
sqlCreateTable(con, table, fields, row.names = NA, temporary = FALSE, ...)
## S4 method for signature 'DBIConnection'
sqlData(con, value, row.names = NA, ...)
## S4 method for signature 'DBIConnection'
sqlInterpolate(conn, sql, ..., .dots = list())
## S4 method for signature 'DBIConnection'
sqlParseVariables(conn, sql, ...)
|
n |
Number of rows to fetch, default -1 |
object |
Table object to print |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.