oracle - Create/replace trigger in Squirrel -


i use squirrel 3.2.0 when try replace trigger:

create or replace trigger crw_ins_trig   before insert or update on crew   each row declare  begin     if (:new.crw_id null)         select crw_id_seq.nextval         :new.crw_id         dual;     end if;   end; / 

i message "please input parameter values. value ':new'"

when click ok result message is:

warning:   warning: execution completed warning sqlstate:  null errorcode: 17110 position: 27  query 1 of 1, rows read: 0, elapsed time (seconds) - total: 0.023, sql query: 0.023, building output: 0 

in application error "ora-04098: trigger 'crw_ins_trig' invalid , failed re-validation"

does has squirrel? if so, how can solve this?

you should unload "sqlparam" plugin in squirrel, after won't ask fill values ":paramname" variables


Comments

Popular posts from this blog

asp.net - repeatedly call AddImageUrl(url) to assemble pdf document -

java - Android recognize cell phone with keyboard or not? -

iphone - How would you achieve a LED Scrolling effect? -