The table is created if it doesn't exist.

rws_read_log(conn)

Arguments

conn

A SQLiteConnection to a database.

Value

A data frame of the log table

Examples

conn <- rws_connect()
rws_read_log(conn)
#> # A tibble: 0 × 5
#> # … with 5 variables: DateTimeUTCLog <dttm>, UserLog <chr>, TableLog <chr>,
#> #   CommandLog <chr>, NRowLog <int>
rws_write(rws_data, exists = FALSE, conn = conn)
if (FALSE) {
rws_read_log(conn)
}
rws_disconnect(conn)