dbColumnInfo {DBI} | R Documentation |
Produces a data.frame that describes the output of a query. The data.frame should have as many rows as there are output fields in the result set, and each column in the data.frame should describe an aspect of the result set field (field name, type, etc.)
dbColumnInfo(res, ...)
res |
An object inheriting from DBIResult. |
... |
Other arguments passed on to methods. |
A data.frame with one row per output field in res
. Methods
MUST include name
, field.type
(the SQL type),
and data.type
(the R data type) columns, and MAY contain other
database specific information like scale and precision or whether the
field can store NULL
s.
Other DBIResult generics: DBIResult-class
,
dbBind
, dbClearResult
,
dbFetch
, dbGetInfo
,
dbGetRowCount
,
dbGetRowsAffected
,
dbGetStatement
,
dbHasCompleted
, dbIsValid
,
dbQuoteIdentifier
,
dbQuoteString
con <- dbConnect(RSQLite::SQLite(), ":memory:") rs <- dbSendQuery(con, "SELECT 1 AS a, 2 AS b") dbColumnInfo(rs) dbFetch(rs) dbClearResult(rs) dbDisconnect(con)