Releases: shunsambongi/r-domo
Releases · shunsambongi/r-domo
v0.3.0
New features
- 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 for
DomoResult
. - New
dbGetInfo
methods forDomoDriver
,DomoConnection
, andDomoResult
classes. - Parameterized queries now possible using
dbSendQuery
,dbBind
, and
dbFetch
. 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.
Minor improvements and fixes
dbCreateTable
now accepts a named list of fields for thefields
parameter.
v0.2.0
domo 0.2.0
Breaking changes
dbWriteTable
gainsoverwrite
,append
andstream
parameters. One of
overwrite
orappend
is usually required.
New features
dbWriteTable
is now able to append to an existing dataset by setting the
append
parameter toTRUE
.dbWriteTable
is now able to import data into an existing dataset without
using the stream API by setting thestream
parameter toFALSE
.
Minor improvements and fixes
- Added a
NEWS.md
file to track changes to the package.
v0.1.1
Hotfix to make dbCreateTable
return newly created dataset ID
v0.1.0
This release adds experimental dbplyr support