| Author |
How to call procedure in JDBC
|
Farakh khan
Ranch Hand
Joined: Mar 22, 2008
Posts: 672
|
|
Hello,
I want to call above Oracle PL/SQL from Java JDBC. Any help please
Best regards
|
 |
Ireneusz Kordal
Ranch Hand
Joined: Jun 21, 2008
Posts: 423
|
|
Hi,
PL/SQL can be executed from JDBC using CallableStatement or PreparedStatement, like ordinary SQL
Here is a simple example:
You can bind values (use parameters) in your PL/SQL query
|
 |
Farakh khan
Ranch Hand
Joined: Mar 22, 2008
Posts: 672
|
|
Thanks from the bottom of my heart
Best regards
|
 |
Soumyajit Hazra
Ranch Hand
Joined: Jun 26, 2007
Posts: 136
|
|
If the stored procedure is already there then better to use the CallableStatement directly. No need of writing the same stored procedure inside the connection.prepareStatement(). Directly use the CallableStatement with the stored procedure name
Check the link Call Stored Procedure from Java
|
Java Programmer | SCJP 1.5 | SCWCD 1.4
|
 |
Farakh khan
Ranch Hand
Joined: Mar 22, 2008
Posts: 672
|
|
Very very helpful
Appreciated. I am grateful to you
Best regards
|
 |
Ravi Kiran Va
Ranch Hand
Joined: Apr 18, 2009
Posts: 2234
|
|
Cant this thing can be done using a normal Statement ??
|
Save India From Corruption - Anna Hazare.
|
 |
Martin Vajsar
Bartender
Joined: Aug 22, 2010
Posts: 2327
|
|
Ravi Kiran Pattu wrote:
Cant this thing can be done using a normal Statement ??
Yes, it definitely can be run using a Statement. However if it would be used over and over again with just the differences in literal values, then by using the PreparedStatement or CallableStatment you get the benefit of:
1) Sql injection prevention (no arbitrary strings concatenated directly into your SQL code), and
2) faster processing and higher scalability (reusing the PreparedStatement with different values of bind parameters generally saves on database processing by skipping the parse phase, which can be resource consuming and non-scalable in Oracle).
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: How to call procedure in JDBC
|
|
|