Skip to content

Commit

Permalink
Update version, add example API
Browse files Browse the repository at this point in the history
  • Loading branch information
ogobrecht committed May 27, 2017
1 parent 1783f42 commit a3faaf9
Show file tree
Hide file tree
Showing 3 changed files with 611 additions and 5 deletions.
4 changes: 2 additions & 2 deletions OM_TAPIGEN.pks
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ IS
-- public global constants c_*
-----------------------------------------------------------------------------
c_generator CONSTANT VARCHAR2(10 CHAR) := 'OM_TAPIGEN';
c_generator_version CONSTANT VARCHAR2(10 CHAR) := '0.4.0';
c_generator_version CONSTANT VARCHAR2(10 CHAR) := '0.4.1';

c_reuse_existing_api_params CONSTANT BOOLEAN := TRUE;
c_col_prefix_in_method_names CONSTANT BOOLEAN := TRUE;
Expand Down Expand Up @@ -268,4 +268,4 @@ IS
PIPELINED;
--------------------------------------------------------------------------------
END om_tapigen;
/
/
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ Please do not download directly this code - this is the development version and
- Supports APEX automatic row processing by generation of an optional updatable view with an instead of trigger, which calls simply the API and if enabled - the generic logging


## How it looks like

See our generated [example API](example-api.md) on the demo table HR.EMPLOYEES.


## License

The MIT License (MIT)
Expand Down Expand Up @@ -168,11 +173,11 @@ BEGIN
p_table_name => i.table_name,
p_reuse_existing_api_params => FALSE,
p_col_prefix_in_method_names => TRUE,
p_enable_insertion_of_rows => TRUE,
p_enable_update_of_rows => TRUE,
p_enable_insertion_of_rows => TRUE,
p_enable_update_of_rows => TRUE,
p_enable_deletion_of_rows => FALSE,
p_enable_generic_change_log => FALSE,
p_enable_dml_view => FALSE,
p_enable_dml_view => FALSE,
p_sequence_name => NULL);
END LOOP;
END;
Expand Down Expand Up @@ -243,6 +248,11 @@ This project uses [semantic versioning][5].
Please use for all comments, discussions, feature requests or bug reports the GitHub [issues][4] functionality.


### 0.4.1 (2017-05-27)

- Fixes #5: Parameter with PK is not used to insert


### 0.4.0 (2017-03-30)

#### new generated API functions / procedures
Expand Down
Loading

0 comments on commit a3faaf9

Please sign in to comment.