create or replace package testpackage as type test_cursor is ref cursor; end testpackage; create or运行时出现如下问题 是怎么回事?java.sql.SQLException: ORA-06550: 第 1 行, 第 20 列: PLS-00103: 出现符号 ";"在需要下列之一
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/15 20:46:08
create or replace package testpackage as type test_cursor is ref cursor; end testpackage; create or运行时出现如下问题 是怎么回事?java.sql.SQLException: ORA-06550: 第 1 行, 第 20 列: PLS-00103: 出现符号 ";"在需要下列之一
create or replace package testpackage as type test_cursor is ref cursor; end testpackage; create or
运行时出现如下问题 是怎么回事?
java.sql.SQLException: ORA-06550: 第 1 行, 第 20 列:
PLS-00103: 出现符号 ";"在需要下列之一时:
.(),*@%&|=-+atinismodnot
rangerem=>.. or != or ~=>=
create or replace package testpackage as type test_cursor is ref cursor; end testpackage; create or运行时出现如下问题 是怎么回事?java.sql.SQLException: ORA-06550: 第 1 行, 第 20 列: PLS-00103: 出现符号 ";"在需要下列之一
kage 名字 as type ReturnCursor is ref Cursor;
procedure demo1(Return_Cursor out ReturnCursor);
end 名字;
体
create or replace package body 名字 as
procedure demo1(Return_Cursor out ReturnCursor)
is
strsql varchar2(8000);
begin
strsql :='select a,b from table1';
open Return_Cursor for strsql;
end 名字;