Skip to content

Releases: shunsambongi/r-domo

v0.3.0

03 Jun 20:31
d7f16c5
Compare
Choose a tag to compare

New features

  • New dbAppendTable method for DomoConnection class.
  • New dbGetRowsAffected method for DomoResult class. This method always
    returns 0, since it is not possible to execute SQL.
  • New dbColumnInfo, dbGetStatement, and dbIsValid methods for
    DomoResult.
  • New dbGetInfo methods for DomoDriver, DomoConnection, and DomoResult
    classes.
  • Parameterized queries now possible using dbSendQuery, dbBind, and
    dbFetch.
  • dbWriteTable now updates the dataset schema when overwrite = TRUE and the
    schema of the value argument does not match the schema of the dataset.
  • New DomoTblConnection class to simplify dbplyr code.
  • New sql_translate_env method for DomoTblConnection.
  • New paste and paste0 translations for DomoTblConnection class.
  • New pkgdown website.

Minor improvements and fixes

  • dbCreateTable now accepts a named list of fields for the fields
    parameter.

v0.2.0

01 Jun 18:45
1ed0bef
Compare
Choose a tag to compare

domo 0.2.0

Breaking changes

  • dbWriteTable gains overwrite, append and stream parameters. One of
    overwrite or append is usually required.

New features

  • dbWriteTable is now able to append to an existing dataset by setting the
    append parameter to TRUE.
  • dbWriteTable is now able to import data into an existing dataset without
    using the stream API by setting the stream parameter to FALSE.

Minor improvements and fixes

  • Added a NEWS.md file to track changes to the package.

v0.1.1

28 May 19:07
6550c3a
Compare
Choose a tag to compare

Hotfix to make dbCreateTable return newly created dataset ID

v0.1.0

28 May 07:28
ca7fc90
Compare
Choose a tag to compare

This release adds experimental dbplyr support