Crystal Reports invoke Oracle stored procedures

Source: Internet
Author: User
Tags end

Crystal Report version is 8.5

Stored procedures are:

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;
/

Crystal Report released to a Java application

Problem:

1, to return more than one record, you can only define stored procedures?

2. How to test stored procedures in Sqlplus?

3, in the Crystal Report can access the stored procedures, but after the release can not generate reports?



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.