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
Add support for bigint argument to dbConnect(), supported values are "integer64", "integer", "numeric" and "character". Large integers are returned as values of that type (r-dbi/DBItest#133).
Data frames resulting from a query always have unique non-empty column names (r-dbi/DBItest#137).
New arguments temporary and fail_if_missing (default: TRUE) to dbRemoveTable() (r-dbi/DBI#141, r-dbi/DBI#197).
Using dbCreateTable() and dbAppendTable() internally (r-dbi/DBI#74).
The field.types argument to dbWriteTable() now must be named.
Using current_schemas(true) also in dbListObjects() and dbListTables(), for consistency with dbListFields(). Objects from the pg_catalog schema are still excluded.
dbListFields() doesn't list fields from tables found in the pg_catalog schema.
The dbListFields() method now works correctly if the name argument is a quoted identifier or of class Id, and throws an error if the table is not found (r-dbi/DBI#75).
Implement format() method for SqliteConnection (r-dbi/DBI#163).
Reexporting Id(), DBI::dbIsReadOnly() and DBI::dbCanConnect().