Results 1 to 1 of 1
Thread: Using CallableStatement
-
Using CallableStatement
CallableStatement is used to call stored procedures. Before calling a stored procedure, Connection object should exist because CallableStatement object is made using Connection object.
Java Code:CallableStatement cs = con.prepareCall("{call SHOW_PUPILS}"); ResultSet rs = cs.executeQuery();
Similar Threads
-
CallableStatement example
By Java Tip in forum Java TipReplies: 0Last Post: 02-10-2008, 11:42 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks