Oracle ref Dynamic Cursor

Source: Internet
Author: User

Oracle ref Dynamic Cursor:

Create or replace procedure pro_cursor_type_V
 
As
T_tmp table3 % rowtype;
Type c_type is ref cursor;
Cur c_type;
V_taname varchar2 (100 );
Begin
V_taname: = 'a ';
Open cur for 'select * from table3 where taname =: a order by taid desc '-- a is only a placeholder for the variable to be bound with the =: symbol.
Using v_taname;
Dbms_output.put_line ('name ');
Loop
Fetch cur into t_tmp;
Exit when cur % notfound;
Dbms_output.put_line ('name: '| t_tmp.taname | 'date:' | t_tmp.indate );
End loop;
End pro_cursor_type_V;

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.