Releases: r-dbi/RSQLite
Releases · r-dbi/RSQLite
RSQLite 2.2.10
Features
- Upgrade bundled SQLite to version 3.37.2 (#403).
Documentation
- Explain reason for bundling SQLite sources.
- Add known SQLite authors to
DESCRIPTION
.
Internal
RSQLite 2.2.9
Features
- Upgrade bundled SQLite to version 3.37.0 (#392).
dbConnect()
now supports URIs that start withfile://
for thedbname
argument. The SQLite code is now built with theSQLITE_USE_URI
(#390, @tschoonj).
Bug fixes
dbBegin()
,dbCommit()
anddbRollback()
support keywords in savepoint names (#386).
Internal
- Adapt to DBItest 1.7.2 (#385).
- Enable all DBItest tests, passing now.
RSQLite 2.2.8
RSQLite 2.2.7
RSQLite 2.2.6
- Upgrade bundled SQLite to 3.35.4 (#361).
- Implement RStudio Connection Contract (#352, @edwindj).
dbDataType()
supports extended types for connections created withextended_types = TRUE
(#360, @ablack3).dbWriteTable()
creates tables with extended types for connections created withextended_types = TRUE
(#360, @ablack3).- Remove BH dependency by inlining the header files (#362).
RSQLite 2.2.5
- Upgrade bundled SQLite to version 3.35.2 (#357).
- If the busy handler fails, the transaction is aborted explicitly (#348, @gaborcsardi).
RSQLite 2.2.4
Features
- Improve concurrency behavior with multiple writers (#280, @gaborcsardi).
- New
sqliteSetBusyHandler()
helps configure what SQLite should do when the database is locked (#280, @gaborcsardi). dbConnect()
gains anextended_types
argument that adds support for date, time and timestamp columns. If a column has a declared typeDATE
,TIME
orTIMESTAMP
, it is returned asDate
,hms
orPOSIXct
value, respectively (#333, @anderic1).- Upgrade bundled SQLite to version 3.34.1 (#342).