Crystal Report calls Oracle stored procedures

Source: Internet
Author: User

Source: Network/Editor: getting started with programming: Unknown

The crystal report version is 8.5

The stored procedure is:

create or replace package pkg_test4
as
type v_cursor is ref cursor;
end pkg_test4;
/
create or replace procedure pro_test4
(P_CURSOR in out pkg_test4.v_cursor)
as
sqlstr varchar2(3000);
begin
sqlstr :='select table_name from user_tables';
open p_cursor for sqlstr;
end pro_test4;
/

The crystal report is released to a Java application.

Problem:

1. How can I define a stored procedure only when multiple records are returned?

2. How to test the stored procedure in sqlplus?

3. can I access this stored procedure in a crystal report, but cannot generate a report after it is released?

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.