From 286fb38c916d5010c416fec8bf5b5a71efb79681 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sat, 27 Jan 2018 21:02:00 +0100 Subject: [PATCH 1/2] bump version to 0.7-14 --- DESCRIPTION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 630a67dfe..b7fe13712 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -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 From 1ce56395dd2163494cd5b55e777b28d004a184b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sat, 27 Jan 2018 21:02:27 +0100 Subject: [PATCH 2/2] NEWS --- API | 2 +- NEWS.md | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/API b/API index 9894d0f7d..3bc1eed79 100644 --- a/API +++ b/API @@ -3,7 +3,7 @@ ## Exported functions ANSI() -SQL(x) +SQL(x, ..., names = NULL) SQLKeywords(dbObj, ...) dbBegin(conn, ...) dbBind(res, params, ...) diff --git a/NEWS.md b/NEWS.md index 64bf2208f..501015a23 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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.