Skip to content

Commit 64dcaa2

Browse files
committed
Merge tag 'v0.7-14'
- 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).
2 parents 2b7e8a6 + 77e100d commit 64dcaa2

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

API

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Exported functions
44

55
ANSI()
6-
SQL(x)
6+
SQL(x, ..., names = NULL)
77
SQLKeywords(dbObj, ...)
88
dbBegin(conn, ...)
99
dbBind(res, params, ...)

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: DBI
2-
Version: 0.7-13
3-
Date: 2017-11-27
2+
Version: 0.7-14
3+
Date: 2018-01-27
44
Title: R Database Interface
55
Description: A database interface definition for communication
66
between R and relational database management systems. All

NEWS.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## DBI 0.7-14 (2018-01-27)
2+
3+
- The `SQL()` function gains a `names` argument which can be used to assign names to SQL strings.
4+
- `dbListResults()` is deprecated by documentation (#58).
5+
- `dbGetException()` is soft-deprecated by documentation (#51).
6+
- Help pages for generics now contain a dynamic list of methods implemented by DBI backends (#162).
7+
- `sqlInterpolate()` now supports both named and positional variables (#216, @hannesmuehleisen).
8+
- Specialized methods for `dbQuoteString()` and `dbQuoteIdentifier()` are available again, for compatibility with clients that use `getMethod()` to access them (#218).
9+
10+
111
## DBI 0.7-13 (2017-11-27)
212

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

0 commit comments

Comments
 (0)