- New
dbAppendTable
method forDomoConnection
class. - New
dbGetRowsAffected
method forDomoResult
class. This method always returns 0, since it is not possible to execute SQL. - New
dbColumnInfo
,dbGetStatement
, anddbIsValid
methods forDomoResult
. - New
dbGetInfo
methods forDomoDriver
,DomoConnection
, andDomoResult
classes. - Parameterized queries now possible using
dbSendQuery
,dbBind
, anddbFetch
. dbWriteTable
now updates the dataset schema whenoverwrite = TRUE
and the schema of thevalue
argument does not match the schema of the dataset.- New
DomoTblConnection
class to simplify dbplyr code. - New
sql_translate_env
method forDomoTblConnection
. - New
paste
andpaste0
translations forDomoTblConnection
class. - New
pkgdown
website.
dbCreateTable
now accepts a named list of fields for thefields
parameter.
dbWriteTable
gainsoverwrite
,append
andstream
parameters. One ofoverwrite
orappend
is usually required.
dbWriteTable
is now able to append to an existing dataset by setting theappend
parameter toTRUE
.dbWriteTable
is now able to import data into an existing dataset without using the stream API by setting thestream
parameter toFALSE
.
- Added a
NEWS.md
file to track changes to the package.