Java Stored Procedures in Java DB

About Prasad Saya

1 Java Stored Procedure

This post is about Java stored procedures in Java DB.

Java DB is a relational database management system that is based on the Java programming language and SQL. This is the Oracle release of the Apache Software Foundation’s open source Derby project. Java DB is included in the Java SE 7 SDK.

Java code invoked within the database is a stored procedure (or procedure). Java stored procedures are database side JDBC (Java Database Connectivity) routines.

The procedure code is defined in a Java class method and stored in the database. This is executed using SQL. The procedure code can be with or without any database related code.

Other database side (or server side) programs are triggers and table functions.


Source : http://www.javacodegeeks.com/2013/09/java-stored-procedures-in-java-db.html

Back to Top