- Document when
field.typesis used indbWriteTable()(#206). - Document setting the tablespace before writing a table (#246).
- Tweak error message for named
paramsargument todbBind()(#266). Redshift()connections now adhere to almost all of the DBI specification when connecting to a Redshift cluster. BLOBs are not supported on Redshift, and there are limitations with enumerating temporary tables (#215).
dbExistsTable(),dbListTables()anddbListObjects()now work for Redshift, with the limitation that only the topmost tables on the search path are returned (#215, #326).dbWriteTable()anddbAppendTable()default tocopy = NULL, this translates toTRUEforPostgres()andFALSEforRedshift()connections (#329).dbAppendTable()quotes values only once for Redshift (#328).dbQuoteString()uses custom quoting routine for Redshift (#327).dbQuoteLiteral()converts timestamp values to input time zone (#325).dbWriteTable()uses a transaction (#307).dbAppendTable()gainscopyargument,TRUEby default. If set, data is imported viaCOPY name FROM STDIN(#241, @hugheylab).- Order help topics on pkgdown site.
- Use
@examplesIfin method documentation. - Skip timestamp tests on i386 (#318).
- Postgres
NOTICEmessages are now forwarded as proper R messages and can be captured and suppressed (#208).
- Same as previous version.
- Fix
dbConnect(check_interrupts = TRUE)on Windows (#244, @zozlak). - Windows: update to libpq 13.2.0 and add UCRT support (#309, @jeroen).
- Remove BH dependency by inlining the header files (#300).
- Use Autobrew if libpq is older than version 12 (#294, @jeroen).
dbConnect()now issuesSET datestyle to iso, mdyto avoid translation errors for datetime values with databases configured differently (#287, @baderstine).
Inf,-InfandNaNvalues are returned correctly on Windows (#267).- Fix behavior with invalid time zone (#284, @ateucher).
dbConnect()defaults totimezone_out = NULL, this means to usetimezone.FORCE_AUTOBREWenvironment variable enforces use ofautobrewinconfigure(#283, @jeroen).- Fix
configureon macOS, small tweaks (#282, #283, @jeroen). - Fix
configurescript, remove$()not reliably detected bycheckbashisms. configureuses a shell script and no longer forwards tosrc/configure.bash(#265).
dbConnect()gainstimezone_outargument, the defaultNULLmeans to usetimezone(#222).dbQuoteLiteral()now quotes difftime values asinterval(#270).- New
postgresWaitForNotify()addsLISTEN/NOTIFYsupport (#237, @lentinj).
Inf,-InfandNaNvalues are returned correctly on Windows (#267).DATETIMEvalues (=without time zone) andDATETIMETZvalues (=with time zone) are returned correctly (#190, #205, #229), also if they start before 1970 (#221).
configureuses a shell script and no longer forwards tosrc/configure.bash(#265).- Switch to GitHub Actions (#268, thanks @ankane).
- Now imports the lubridate package.
- Gains new
Redshiftdriver for connecting to Redshift databases. Redshift databases behave almost identically to Postgres so this driver allows downstream packages to distinguish between the two (#258). - Datetime values are now passed to the database using an unambiguous time zone format (#255, @imlijunda).
- Document
Postgres()together withdbConnect()(#242). - Windows: update libpq to 12.2.0.
- Breaking: Translate floating-point values to
DOUBLE PRECISIONby default (#194). - Avoid aggressive rounding when passing numeric values to the database (#184).
- Avoid adding extra spaces for numerics (#216).
- Column names and error messages are UTF-8 encoded (#172).
dbWriteTable(copy = FALSE),sqlData()anddbAppendTable()now work for character columns (#209), which are always converted to UTF-8.
- Add
timezoneargument todbConnect()(#187, @trafficonese). - Implement
dbGetInfo()for the driver and the connection object. dbConnect()gainscheck_interruptsargument that allows interrupting execution safely while waiting for query results to be ready (#193, @zozlak).dbUnquoteIdentifier()also handles unquoted identifiers of the formtableorschema.table, for compatibility with dbplyr. In addition, acatalogcomponent is supported for quoting and unquoting withId().dbQuoteLiteral()available for"character"(#209).- Windows: update libpq to 11.1.0.
- Fulfill CII badge requirements (#227, @TSchiefer).
- Hide unused symbols in shared library (#230, @troels).
- Fix partial argument matching in
dbAppendTable()(r-dbi/DBI#249). - Fix binding for whole numbers and
POSIXttimestamps (#191).
sqlData(copy = FALSE)now usesdbQuoteLiteral()(#209).- Add tests for
dbUnquoteIdentifier()(#220, @baileych). - Improved tests for numerical precision (#203, @harvey131).
- Fix test: change from
REALtoDOUBLE PRECISION(#204, @harvey131). - Implement
dbAppendTable()for own connection class, don't hijack base class implementation (r-dbi/RMariaDB#119). - Avoid including the call in errors.
- Align
DbResultand other classes with RSQLite and RMariaDB.
- Replace
std::mem_fn()byboost::mem_fn()which works for older compilers.
- Replace
std::mem_fun_ref()bystd::mem_fn().
- Add support for
bigintargument todbConnect(), 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
temporaryandfail_if_missing(default:TRUE) todbRemoveTable()(r-dbi/DBI#141, r-dbi/DBI#197). - Using
dbCreateTable()anddbAppendTable()internally (r-dbi/DBI#74). - The
field.typesargument todbWriteTable()now must be named. - Using
current_schemas(true)also indbListObjects()anddbListTables(), for consistency withdbListFields(). Objects from thepg_catalogschema are still excluded. dbListFields()doesn't list fields from tables found in thepg_catalogschema.- The
dbListFields()method now works correctly if thenameargument is a quoted identifier or of classId, and throws an error if the table is not found (r-dbi/DBI#75). - Implement
format()method forSqliteConnection(r-dbi/DBI#163). - Reexporting
Id(),DBI::dbIsReadOnly()andDBI::dbCanConnect(). - Now imports DBI 1.0.0.
- Breaking change:
dbGetException()is no longer reexported from DBI. - Make "typname" information available after
dbFetch()anddbGetQuery(). Values of unknown type are returned as character vector of class"pq_xxx", where"xxx"is the "typname" returned from PostgreSQL. In particular,JSONandJSONBvalues now have class"pq_json"and"pq_jsonb", respectively. The return value ofdbColumnInfo()gains new columns".oid"(integer),". known"(logical) and".typname"(character) (#114, @etiennebr). - Values of class
"integer64"are now supported fordbWriteTable()anddbBind()(#178). - Schema support, as specified by DBI:
dbListObjects(),dbUnquoteIdentifier()andId(). - Names in the
xargument todbQuoteIdentifier()are preserved in the output (r-lib/DBI#173). - All generics defined in DBI (e.g.,
dbGetQuery()) are now exported, even if the package doesn't provide a custom implementation (#168). - Replace non-portable
timegm()with private implementation. - Correct reference to RPostgreSQL package (#165, @ClaytonJY).
- Only call
PQcancel()if the query hasn't completed, fixes transactions on Amazon Redshift (#159, @mmuurr). - Fix installation on macOS.
- Check libpq version in configure script (need at least 9.0).
- Fix UBSAN warning: reference binding to null pointer (#156).
- Fix rchk warning: PROTECT internal temporary SEXP objects (#157).
- Fix severe memory leak when fetching results (#154).
Initial release, compliant to the DBI specification.
- Test almost all test cases of the DBI specification.
- Fully support parametrized queries.
- Spec-compliant transactions.
- 64-bit integers are now supported through the
bit64package. This also means that numeric literals (as inSELECT 1) are returned as 64-bit integers. Thebigintargument todbConnect()allows overriding the data type on a per-connection basis. - Correct handling of DATETIME and TIME columns.
- New default
row.names = FALSE.