Skip to content

Commit

Permalink
Merge tag 'v0.7-14'
Browse files Browse the repository at this point in the history
- The `SQL()` function gains a `names` argument which can be used to assign names to SQL strings.
- `dbListResults()` is deprecated by documentation (#58).
- `dbGetException()` is soft-deprecated by documentation (#51).
- Help pages for generics now contain a dynamic list of methods implemented by DBI backends (#162).
- `sqlInterpolate()` now supports both named and positional variables (#216, @hannesmuehleisen).
- Specialized methods for `dbQuoteString()` and `dbQuoteIdentifier()` are available again, for compatibility with clients that use `getMethod()` to access them (#218).
  • Loading branch information
krlmlr committed Jan 27, 2018
2 parents 2b7e8a6 + 77e100d commit 64dcaa2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion API
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Exported functions

ANSI()
SQL(x)
SQL(x, ..., names = NULL)
SQLKeywords(dbObj, ...)
dbBegin(conn, ...)
dbBind(res, params, ...)
Expand Down
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-13
Date: 2017-11-27
Version: 0.7-14
Date: 2018-01-27
Title: R Database Interface
Description: A database interface definition for communication
between R and relational database management systems. All
Expand Down
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## DBI 0.7-14 (2018-01-27)

- The `SQL()` function gains a `names` argument which can be used to assign names to SQL strings.
- `dbListResults()` is deprecated by documentation (#58).
- `dbGetException()` is soft-deprecated by documentation (#51).
- Help pages for generics now contain a dynamic list of methods implemented by DBI backends (#162).
- `sqlInterpolate()` now supports both named and positional variables (#216, @hannesmuehleisen).
- Specialized methods for `dbQuoteString()` and `dbQuoteIdentifier()` are available again, for compatibility with clients that use `getMethod()` to access them (#218).


## DBI 0.7-13 (2017-11-27)

- The deprecated `print.list.pairs()` has been removed.
Expand Down

0 comments on commit 64dcaa2

Please sign in to comment.