dbListFields,SQLiteConnection,character-method {RSQLite}R Documentation

List fields in specified table.

Description

List fields in specified table.

Usage

## S4 method for signature 'SQLiteConnection,character'
dbListFields(conn, name)

Arguments

conn

An existing SQLiteConnection

name

a length 1 character vector giving the name of a table.

Examples

con <- dbConnect(SQLite())
dbWriteTable(con, "iris", iris)
dbListFields(con, "iris")
dbDisconnect(con)

[Package RSQLite version 1.0.0 Index]