Trigger not fired

lchlee

New Member
Hi folks,
I made trigger and two table test5, test5_ioilink.
Wherenever I try to insert some value on test5,
an error occurs.
Is there anyone familiar with this kind of error.
I need an angel's help.

Thanks in advance
Changlim Lee
insert into test5 values('AAA');

=== SQL Exception 1 ===
SQLState=HY000
ErrorCode=-210022
[JDBC Progress Driver]:.

CREATE TRIGGER tri_test1
AFTER INSERT ON test5
REFERENCING NEWROW
FOR EACH ROW
IMPORT
import java.sql.*;
BEGIN

END;
commit;
:confused: :confused:
 
Top