Subject Re: Java Stored Procedures
Author Roman Rokytskyy
> Roman, one question about the Java procedures (as you're doing
> a good job there ;) ...
> Is it java-source code stored and compiled in
> Fb,

No.

> or are the classes registered and should I do a:
> CREATE PROCEDURE MyJavaWrapper
> LANGUAGE JAVA
> CLASS myregisteredclass.mymethod etc etc...
>

Syntax is bit different, but yes.

I would prefer to have a possibility to use Java code between AS BEGIN
and END, but that is quite substantial change to the engine and does
not eliminate need of having engine CLASSPATH (procedure would very
likely need other classes except Java runtime and JDBC driver). So, I
do not think it is worth the effort.

Roman