Call the Oracle stored procedure in java, and the javaoracle Stored Procedure

Source: Internet
Author: User

Call the Oracle stored procedure in java, and the javaoracle Stored Procedure
Calling the Oracle stored procedure in java

This article describes how to call the stored procedure of Oracle through java.
1. Write the Stored Procedure

Create or replace procedure sp_pro3 (sp_name VARCHAR2, sp_sal NUMBER) ISBEGIN -- modify the salary UPDATE emp SET sal = sp_sal WHERE ename = sp_name; END based on the user name;
Package testOraclePro; import java. SQL. callableStatement; import java. SQL. connection; import java. SQL. driverManager; public class Test {public static void main (String [] args) {try {// 1. load the driver Class. forName ("oracle. jdbc. driver. oracleDriver "); // 2. get Connection ct = DriverManager. getConnection ("jdbc: oracle: thin: @ 127.0.0.1: 1521: XE", "sys as sysdba", "123456"); // 3. create CallableStatement cs = ct . PrepareCall ("{call sp_pro3 (?,?)} "); // 4. assign a value to cs. setString (1, "zxs"); cs. setFloat (2, 455f); // 5. run cs.exe cute (); // 6. disable resource cs. close (); ct. close ();} catch (Exception e) {e. printStackTrace ();}}}

Run the test class above to call the stored procedure and execute the corresponding program.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.