> doesn't insert a row in the table ERRORS when I write: > > EXECUTE PROCEDURE SAVE_LASTNAME(0, 'SMITH678901234567890123456')
Isn’t it normal in all programming languages that when error occurs than normal program flow is interrupted ? You caused error *before* the procedure was invoked so it is expected that the body of procdure will not be entered. Also, if e.g. the second parameter of the procedure was Integer, what value would you expect in NEW. variable ? Ivan
