Skip to content

Commit

Permalink
0001307: Allow users to insert custom trigger text in the Symmetric t…
Browse files Browse the repository at this point in the history
…riggers.

Add support for Sybase ASE.
  • Loading branch information
abrougher committed Jul 3, 2013
1 parent 7afd97c commit 954f2dc
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -89,6 +89,7 @@ public AseTriggerTemplate(ISymmetricDialect symmetricDialect) {
" close DataCursor " +
" deallocate cursor DataCursor " +
" end " +
" $(custom_on_insert_text) " +
" set nocount off " +
" end " );

Expand Down Expand Up @@ -129,6 +130,7 @@ public AseTriggerTemplate(ISymmetricDialect symmetricDialect) {
" close DataCursor " +
" deallocate cursor DataCursor " +
" end " +
" $(custom_on_update_text) " +
" set nocount off " +
" end " );

Expand Down Expand Up @@ -161,7 +163,8 @@ public AseTriggerTemplate(ISymmetricDialect symmetricDialect) {
" close DataCursor " +
" deallocate cursor DataCursor " +
" end " +
" set nocount off " +
" $(custom_on_delete_text) " +
" set nocount off " +
" end " );

sqlTemplates.put("initialLoadSqlTemplate" ,
Expand Down

0 comments on commit 954f2dc

Please sign in to comment.