--oracle database for programming development--stored procedures using dynamic parameter bindings (3)

Source: Internet
Author: User

1, dynamic parameter binding, can realize the dynamic execution of different SQL

-- Create a package Create or Replace  as is cursor;        procedure inch  Number , emplist out empcursor); END MyPackage;
--Create a package bodyCreate or ReplacePackage BODY MyPackage as  procedureQueryemplist (DNOinch  Number, emplist out Empcursor) asStr_l_selectsqlvarchar2(4000); BEGINStr_l_selectsql:='SELECT * from emp where deptno =:d no'; --EXECUTE IMMEDIATE str_l_selectsql USING v_2;--cannot implement dynamic binding parameters    --str_l_selectsql: =str_l_selectsql | | dno;--can be stitched in SQL way, but not professionally    --open emplist for str_l_selectsql;    --with the cursor, you first open the cursor    OpenEmplist forStr_l_selectsql USING DNO;--Dynamic Binding Parameters        NULL; ENDqueryemplist;ENDMyPackage;

--oracle database for programming development--stored procedures using dynamic parameter bindings (3)

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.