Executing Java External Procedures
Basic Java Application Program
Development Method
SQL> CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED "JavaExtproc" AS
public class SimpleMath {
public static int findMax(int x, int y) {
if (x >= y) return x;
else return y;
}
}
/Displaying Java Output
Internal JDBC Driver
Connecting with a Database Server
Example
Last updated

