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
New dbAppendTable() that by default calls sqlAppendTableTemplate() and then dbExecute() with a param argument, without support for row.names argument (#74).
New dbCreateTable() that by default calls sqlCreateTable() and then dbExecute(), without support for row.names argument (#74).
New dbCanConnect() generic with default implementation (#87).
New dbIsReadOnly() generic with default implementation (#190, @anhqle).
Changes
sqlAppendTable() now accepts lists for the values argument, to support lists of SQL objects in R 3.1.
Add default implementation for dbListFields(DBIConnection, Id), this relies on dbQuoteIdentifier(DBIConnection, Id) (#75).
Documentation updates
The DBI specification vignette is rendered correctly from the installed package (#234).
Update docs on how to cope with stored procedures (#242, @aryoda).
Add "Additional arguments" sections and more examples for dbGetQuery(), dbSendQuery(), dbExecute() and dbSendStatement().
The dbColumnInfo() method is now fully specified (#75).
The dbListFields() method is now fully specified (#75).
The dynamic list of methods in help pages doesn't contain methods in DBI anymore.
Bug fixes
Pass missing value argument to secondary dbWriteTable() call (#737, @jimhester).
The Id class now uses <Id> and not <Table> when printing.
The default dbUnquoteIdentifier() implementation now complies to the spec.