Skip to content

v0.3.0

Latest
Compare
Choose a tag to compare
@shunsambongi shunsambongi released this 03 Jun 20:31
· 1 commit to master since this release
d7f16c5

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.