The table is created if it doesn't exist.
Examples
conn <- rws_connect()
rws_read_log(conn)
#> # A tibble: 0 × 5
#> # ℹ 5 variables: DateTimeUTCLog <dttm>, UserLog <chr>, TableLog <chr>,
#> # CommandLog <chr>, NRowLog <int>
rws_write(rws_data, exists = FALSE, conn = conn)
if (FALSE) { # \dontrun{
rws_read_log(conn)
} # }
rws_disconnect(conn)