Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
-- simple construct
|
||||
select
|
||||
when logicalCondition1 then condition1()
|
||||
when logicalCondition2 then condition2()
|
||||
otherwise conditionDefault()
|
||||
end
|
||||
|
||||
-- set up a catch block to intercept missing OTHERWISE clause
|
||||
do
|
||||
select
|
||||
when logicalCondition1 then condition1()
|
||||
when logicalCondition2 then condition2()
|
||||
end
|
||||
catch ex1 = NoOtherwiseException
|
||||
ex1.printStackTrace()
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue