dbListFields {RAthena} | R Documentation |
List Field names of Athena table
Description
List Field names of Athena table
Usage
## S4 method for signature 'AthenaConnection,character'
dbListFields(conn, name, ...)
Arguments
conn |
A DBIConnection object, as returned by
|
name |
The table name, passed on to
|
... |
Other parameters passed on to methods. |
Value
dbListFields()
returns a character vector with all the fields from an Athena table.
See Also
Examples
## Not run:
# Note:
# - Require AWS Account to run below example.
# - Different connection methods can be used please see `RAthena::dbConnect` documnentation
library(DBI)
# Demo connection to Athena using profile name
con <- dbConnect(RAthena::athena())
# Write data.frame to Athena table
dbWriteTable(con, "mtcars", mtcars,
partition = c("TIMESTAMP" = format(Sys.Date(), "%Y%m%d")),
s3.location = "s3://mybucket/data/"
)
# Return list of fields in table
dbListFields(con, "mtcars")
# Disconnect conenction
dbDisconnect(con)
## End(Not run)
[Package RAthena version 2.6.1 Index]