Skip to content

Commit

Permalink
Merge tag 'v1.0.9014'
Browse files Browse the repository at this point in the history
- `dbWriteTable()` supports `temporary` argument, default `FALSE` (#113).
- The `name` argument to the transaction methods appears before the ellipsis for compatibility reasons.
- Use new `dbSendStatement()` and `dbExecute()` internally.
- Deprecation warnings are given only once, with a clear reference to the source.
- Undeprecate `sqliteQuickColumn()` and `fetch()`.
- Multi-row binding implemented in C++ (#168, #178).
- All DBI methods contain an ellipsis `...` in their signature.
  • Loading branch information
krlmlr committed Oct 6, 2016
2 parents ab40649 + de66ac4 commit 9acb240
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: RSQLite
Version: 1.0.9013
Date: 2016-10-01
Version: 1.0.9014
Date: 2016-10-06
Title: SQLite Interface for R
Authors@R: c(
person("Kirill", "Müller", role = c("aut", "cre"), email = "[email protected]"),
Expand Down
11 changes: 11 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## RSQLite 1.0.9014 (2016-10-06)

- `dbWriteTable()` supports `temporary` argument, default `FALSE` (#113).
- The `name` argument to the transaction methods appears before the ellipsis for compatibility reasons.
- Use new `dbSendStatement()` and `dbExecute()` internally.
- Deprecation warnings are given only once, with a clear reference to the source.
- Undeprecate `sqliteQuickColumn()` and `fetch()`.
- Multi-row binding implemented in C++ (#168, #178).
- All DBI methods contain an ellipsis `...` in their signature.


## RSQLite 1.0.9013 (2016-10-01)

- Use `plogr` for logging.
Expand Down

0 comments on commit 9acb240

Please sign in to comment.