Skip to content

Commit

Permalink
Merge tag 'v0.7-15' - Schema support: Export Id(), new generics `db…
Browse files Browse the repository at this point in the history
…ListObjects()` and `dbUnquoteIdentifier()`, methods for `Id` that call `dbQuoteIdentifier()` and then forward (#220). - `dbListConnections()` is soft-deprecated by documentation. - Default implementations of `dbQuoteIdentifier()` and `dbQuoteLiteral()` preserve names, default implementation of `dbQuoteString()` strips names (#173). - Breaking change: If the `names` argument is unset, `SQL()` strips the names from the output.
  • Loading branch information
krlmlr committed Feb 10, 2018
2 parents 0e40bcf + 24156e8 commit 5d49711
Show file tree
Hide file tree
Showing 2 changed files with 10 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: DBI
Version: 0.7-14
Date: 2018-01-27
Version: 0.7-15
Date: 2018-02-10
Title: R Database Interface
Description: A database interface definition for communication
between R and relational database management systems. All
Expand Down
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## DBI 0.7-15 (2018-02-10)

- Schema support: Export `Id()`, new generics `dbListObjects()` and `dbUnquoteIdentifier()`, methods for `Id` that call `dbQuoteIdentifier()` and then forward (#220).
- `dbListConnections()` is soft-deprecated by documentation.
- Default implementations of `dbQuoteIdentifier()` and `dbQuoteLiteral()` preserve names, default implementation of `dbQuoteString()` strips names (#173).
- Breaking change: If the `names` argument is unset, `SQL()` strips the names from the output.


## DBI 0.7-14 (2018-01-27)

- The `SQL()` function gains a `names` argument which can be used to assign names to SQL strings.
Expand Down

0 comments on commit 5d49711

Please sign in to comment.