Skip to content

Latest commit

 

History

History
executable file
·
42 lines (31 loc) · 1.46 KB

NEWS.md

File metadata and controls

executable file
·
42 lines (31 loc) · 1.46 KB

domo 0.3.0

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.

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.