Giter Club home page Giter Club logo

sqliteutils's Introduction

sqliteutils

Lifecycle: experimental CRAN status

A tool for working with SQLite databases. SQLite has some idiosyncrasies and limitations that impose some hurdles to the R developer. For instance, SQLite doesn’t have a date type and sqliteutils has some functions to deal with that

Installation

You can install the released version of sqliteutils from CRAN with:

install.packages("sqliteutils")

Example

SQLIte does not have a date type. When you insert dates in a SQLIte table using DBI::dbWriteTable(), for instance, they are converted to a numeric value.

Using slu_date_to_r() you can convert the value back to the original date.

library(sqliteutils)

data <- data.frame(date = c(as.Date("2021-09-18"), as.Date("2021-09-19"))
con <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")
DBI::dbWriteTable(conn = con, name = "dates", value = data )
data_from_bd <- DBI::dbReadTable(conn = con, name = "dates")
original_date <- slu_date_to_r(data_from_bd$date)
DBI::dbDisconnect(con)

print(original_date)

Using slu_date_to_sqlite() you can make the inverse: convert a date to the number SQLite would store it if we called DBI::dbWriteTable()

con <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")
data <- data.frame(
  date = c(as.Date("2021-09-19"), as.Date("2021-09-20"))
)
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)
)
DBI::dbDisconnect(con)

print(data_from_bd)
print(data_with_sqlite_dates)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.