Subject Firebird - Stored Procedure - How to execute Java Program (Java Stored Procedure) after insert of a row
Author
I would like to run a Java program(plug-in), for a trigger on a table, say AFTER INSERT. How do I create the database trigger, to achieve this and get the java program executed on insert of a row in the table.

I see in some documents, that a Java program can be called, on database events as above (ON INSERT/UPDATE). But I could find the technique for achieving this.

References of Java invocation are from the following links:
1.The first test version of FB/Java, compatible with Firebird 3.0.0 https://www.firebirdsql.org/en/news/the-first-test-version-of-fb-java-compatible-with-firebird-3/
FB/Java is an External Engine plugin for Firebird that makes Firebird capable of run functions, procedures, and triggers made in the Java platform.

2.New In Firebird 3.0
https://firebirdsql.org/file/documentation/release_notes/html/en/3_0/rnfb30-new.html
Eventually, plug-in support for stored procedures, triggers and functions written in Java, C++, ObjectPascal, etc.

3.UDRs in java https://www.firebirdsql.org/file/documentation/release_notes/html/en/3_0/rnfb30-apiods-api.html#d0e5446.
Firebird 3 supports external engines, bridges between the engine and the execution environments that can run UDRs: native code, Java and others

I am using Firebird-3.0.2 on windows 7 64-bit.

Thanks