You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff 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).
The DBI package defines a common interface between the R and database management systems (DBMS). The interface defines a small set of classes and methods similar in spirit to Perl's [DBI](http://dbi.perl.org/), Java's [JDBC](http://www.oracle.com/technetwork/java/javase/jdbc/index.html), Python's [DB-API](http://www.python.org/dev/peps/pep-0249/), and Microsoft's [ODBC](http://en.wikipedia.org/wiki/ODBC). It defines a set of classes and methods defines what operations are possible and how they are performed:
6
6
@@ -46,9 +46,9 @@ dbDisconnect(con)
46
46
To install DBI:
47
47
48
48
* Get the released version from CRAN: `install.packages("DBI")`
49
-
* Get the development version from github: `devtools::install_github("rstats-db/DBI")`
49
+
* Get the development version from github: `devtools::install_github("r-dbi/DBI")`
50
50
51
-
Discussions associated with DBI and related database packages take place on [R-SIG-DB](https://stat.ethz.ch/mailman/listinfo/r-sig-db).
51
+
Discussions associated with DBI and related database packages take place on [R-SIG-DB](https://stat.ethz.ch/mailman/listinfo/r-sig-db). The website [Databases using R](http://db.rstudio.com/) describes the tools and best practices in this ecosystem.
0 commit comments