N
nehaakg
Guest
Hi All, Just wanted to know if this is an expected behaviour of create statement, when i am writing it after create statement. it does not execute, instead if i am writing it before create statement it did work. Below is the code which does not work. /*trigger does not execute*/ define variable x as int init 1. create table1. assign table1.field1 = x. on create of table1 do: x = 10. end. below is the code which works. /*trigger executes here*/ define variable x as int init 1. on create of table1 do: x = 10. end. create table1. assign table1.field1 = x.
Continue reading...
Continue reading...