- Internal changes only.
- Implement
dbGetInfo()
according to the specification. - Include information about
libssl-dev
inconfigure
andDESCRIPTION
(#101).
- Get rid of
auto_ptr
, which causesR CMD check
warnings on R-devel.
- Add support for
bigint
argument 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
temporary
andfail_if_missing
(default:TRUE
) todbRemoveTable()
(r-dbi/DBI#141, r-dbi/DBI#197). - Using
dbCreateTable()
anddbAppendTable()
internally (r-dbi/DBI#74). - Implement
format()
method forMariaDBConnection
(r-dbi/DBI#163). - Reexporting
Id()
,DBI::dbIsReadOnly()
andDBI::dbCanConnect()
. - Now imports DBI 1.0.0.
dbGetException()
is no longer reexported from DBI.NaN
andInf
are converted toNULL
when writing to the database (#77).- Values of class
"integer64"
are now supported fordbWriteTable()
anddbBind()
(#87). - Schema support, as specified by DBI:
dbListObjects()
,dbUnquoteIdentifier()
andId()
. - Names in the
x
argument todbQuoteIdentifier()
are preserved in the output (r-lib/DBI#173). - Replace non-portable
timegm()
with private implementation (#78). - Update libmariadbclient to version 2.3.5 on Windows (#92, @jeroen).
- Attempt to fix Solaris builds by redefining
timegm
symbol if the macrosun
is defined. - Fix examples running on CRAN by using only temporary tables and
overwrite = TRUE
. - Refactor connection and result handling to be more similar to other backends.
- Add support for R 3.1, but DBI >= 0.5 is required (#68).
- Queries that bypass the prepared statement framework (like
SHOW PLUGINS
) return data (#70, @nbenn). - A temporary table can be created via
dbWriteTable()
if a table by the same name exists. If a temporary table of the same name exists, the error will be raised by the database itself, because this condition cannot be checked beforehand.
Initial release, compliant to the DBI specification.
- Test almost all test cases of the DBI specification.
- Fully support parametrized queries (#22, #27, #39).
- Queries not supported by the prepared statement protocol still can be run via
dbExecute()
ordbSendStatement()
, the functionmariadbExecQuery()
has been removed (#28). - Spec-compliant transactions (#38, #49).
- 64-bit integers are now supported through the
bit64
package. Unfortunately, this also means that numeric literals (as inSELECT 1
) are returned as 64-bit integers (#12). - Correct handling of DATETIME and TIME columns (#52, @noahwilliamsson). Support timestamp values with sub-second precision on output, and with year beyond 2038 (#56).
- The connection now uses the "utf8mb4" charset by default (#7).
- New default
row.names = FALSE
. - New SSL-related arguments to
dbConnect()
:ssl.key
,ssl.cert
,ssl.ca
,ssl.capath
,ssl.cipher
(#131, #148, @adamchainz). - CI for Linux, Windows, and OS X (#25).
- Support for Connector/C from both MariaDB and MySQL.
-
RMariaDB fully supports DATE and DATETIME columns. On output, DATE columns will be converted to vectors of
Date
s and DATETIME will be converted toPOSIXct
. To faciliate correct computation of time zone, RMariaDB always sets the session timezone to UTC. -
RMariaDB has been rewritten (essentially from scratch) in C++ with Rcpp. This has considerably reduced the amount of code, and allow us to take advantage of the more sophisticated memory management tools available in Rcpp. This rewrite should yield some minor performance improvements, but most importantly protect against memory leaks and crashes. It also provides a better base for future development.
-
Support for prepared queries: create prepared query with
dbSendQuery()
and bind values withdbBind()
.dbSendQuery()
anddbGetQuery()
also support inline parameterised queries, likedbGetQuery(mariadbDefault(), "SELECT * FROM mtcars WHERE cyl = :cyl", params = list(cyl = 4))
. This has no performance benefits but protects you from SQL injection attacks. -
dbListFields()
has been removed. Please usedbColumnInfo()
instead. -
dbGetInfo()
has been removed. Please use the individual metadata functions. -
Information formerly contain in
summary()
methods has now been integrated intoshow()
methods. -
make.db.names()
has been deprecated. UsedbQuoteIdentifier()
instead. -
isIdCurrent()
has been deprecated. UsedbIsValid()
instead. -
dbApply()
,dbMoreResults()
anddbNextResults()
have been removed. These were always flagged as experimental, and now the experiment is over. -
dbEscapeStrings()
has been deprecated. Please usedbQuoteStrings()
instead. -
dbObjectId compatibility shim removed
-
Add SSL support on Windows.
-
Fix repetition of strings in subsequent rows (@peternowee, #125).
-
Always set connection character set to utf-8
-
Backport build system improvements from stable branch
-
Reenable Travis-CI, switch to R Travis, collect coverage