Skip to content

Releases: ogobrecht/plex

Feature & Bugfix Release

31 Oct 19:12
Compare
Choose a tag to compare
  • New: All like/not like parameters are now translated internally with the escape character set to backslash like so ... like 'YourExpression' escape '\'
  • Fixed: binary data type columns (raw, long_raw, blob, bfile) should no longer break the export data to CSV functionality

Feature Release

23 Sep 19:29
Compare
Choose a tag to compare

Change two parameters of function BackApp

  • Old: p_object_filter_regex

    • New: p_object_name_like - a comma separated list of like expressions to filter the objects - example: 'EMP%,DEPT%' will be translated to: where ... and (object_name like 'EMP%' or object_name like 'DEPT%')
    • New: p_object_name_not_like - a comma separated list of not like expressions to filter the objects - example: 'EMP%,DEPT%' will be translated to: where ... and (object_name not like 'EMP%' and object_name not like 'DEPT%')
  • Old: p_data_table_filter_regex

    • New: p_data_table_name_like - a comma separated list of like expressions to filter the tables - example: 'EMP%,DEPT%' will be translated to: where ... and (table_name like 'EMP%' or table_name like 'DEPT%')
    • New: p_data_table_name_not_like - a comma separated list of not like expressions to filter the tables - example: 'EMP%,DEPT%' will be translated to: where ... and (table_name not like 'EMP%' and table_name not like 'DEPT%')

Regex filter were simply too complex to use...

First public release

26 Aug 18:08
Compare
Choose a tag to compare
v1.0.0

cleanup package.json