slu_date_to_sqlite: Converts dates to the numeric values as which they would be...

Description Usage Arguments Value Examples

View source: R/slu_date_to_sqlite.R

Description

Converts dates to the numeric values as which they would be stored on SQLite

Usage

1

Arguments

date_r

dates as returned by as.Date() in R

Value

integers that correspond to the numbers that are stored on SQLite when DBI:dbWriteTable is used

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
con <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")
data <- data.frame(
    date = as.Date("2021-09-19")
)
DBI::dbWriteTable(conn = con, name = "dates", value = data )
data_from_bd <- dplyr::tbl(src = con, "dates") %>%  dplyr::collect()
data_with_sqlite_dates <- data %>%
dplyr::mutate(
    date = slu_date_to_sqlite(date)
)
print(data_from_bd)
print(data_with_sqlite_dates)
DBI::dbDisconnect(con)

sqliteutils documentation built on Sept. 21, 2021, 5:11 p.m.