dbListFields,SQLiteConnection,character-method {RSQLite} | R Documentation |
List fields in specified table.
## S4 method for signature 'SQLiteConnection,character' dbListFields(conn, name)
conn |
An existing |
name |
a length 1 character vector giving the name of a table. |
con <- dbConnect(SQLite()) dbWriteTable(con, "iris", iris) dbListFields(con, "iris") dbDisconnect(con)