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] 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.