readwritesqlite (version 0.2.0)

rws_describe_meta.character: Add Descriptions to SQL Meta Data Table

Description

Add Descriptions to SQL Meta Data Table

Usage

# S3 method for character
rws_describe_meta(x, column, description, ..., conn)

Value

An invisible copy of the updated meta table.

Arguments

x

A character vector of table name(s).

column

A character vector of column name(s).

description

A character vector of the description(s)

...

Not used.

conn

A SQLiteConnection to a database.

See Also

Other rws_describe_meta: rws_describe_meta()

Examples

Run this code
conn <- rws_connect()
rws_write(rws_data, exists = FALSE, conn = conn)
rws_read_meta(conn)
rws_describe_meta("rws_data", "Units", "The site length.", conn = conn)
rws_describe_meta("rws_data", "POSIXct", "Time of the visit", conn = conn)
rws_read_meta(conn)
rws_disconnect(conn)

Run the code above in your browser using DataLab