Skip to content

Commit 4a72fb5

Browse files
committed
NEWS
1 parent acbd8ba commit 4a72fb5

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

API

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ isSQLKeyword(dbObj, name, keywords = .SQL92Keywords, case = c("lower", "upper",
4949
isSQLKeyword.default(name, keywords = .SQL92Keywords, case = c("lower", "upper", "any")[3])
5050
make.db.names(dbObj, snames, keywords = .SQL92Keywords, unique = TRUE, allow.keywords = TRUE, ...)
5151
make.db.names.default(snames, keywords = .SQL92Keywords, unique = TRUE, allow.keywords = TRUE)
52-
print.list.pairs(x, ...)
5352
sqlAppendTable(con, table, values, row.names = NA, ...)
5453
sqlAppendTableTemplate(con, table, values, row.names = NA, prefix = "?", ...)
5554
sqlColumnToRownames(df, row.names = NA)

NEWS.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## DBI 0.7-13 (2017-11-27)
2+
3+
- The deprecated `print.list.pairs()` has been removed.
4+
- Fix `dbDataType()` for `AsIs` object (#198, @yutannihilation).
5+
- Point to db.rstudio.com (@wibeasley, #209).
6+
- Reflect new 'r-dbi' organization in `DESCRIPTION` (@wibeasley, #207).
7+
- Using switchpatch on the second argument for default implementations of `dbQuoteString()` and `dbQuoteIdentifier()`.
8+
- New `dbQuoteLiteral()` generic. The default implementation uses switchpatch to avoid dispatch ambiguities, and forwards to `dbQuoteString()` for character vectors. Backends may override methods that also dispatch on the second argument, but in this case also an override for the `"SQL"` class is necessary (#172).
9+
- Fix `dbQuoteString()` and `dbQuoteIdentifier()` to ignore invalid UTF-8 strings (r-dbi/DBItest#156).
10+
11+
112
## DBI 0.7-12 (2017-08-10)
213

314
- Add default implementation of `dbListFields()`.

0 commit comments

Comments
 (0)