一.用自定義型別實現
1、建立表物件型別。
在oracle中想要返回表物件,必須自定義乙個表型別,如下所示:
create or replace type type_table is table of number;
上面的型別定義好後,在function使用可用返回一列的表,稍後介紹返回多列的
2、 建立函式
在函式的定義中,可以使用管道化表函式和普通的方式,下面提供兩種使用方式的**:
1)、管道化表函式方式:
create or replace function f_pipe
(s number)
return type_table pipelined
as
begin
for i in 1..s loop
pipe row(i);
end loop;
return;
end f_pipe;
注意:管道的方式必須使用空的return表示結束.
呼叫函式的方式如下:
2)、 普通的方式:
create or replace function f_normal
(s number)
return type_table
as rs type_table:= type_table();
begin
for i in 1..s loop
rs.extend;
rs(rs.count) := i;
end loop;
return rs;
end f_normal;
呼叫方式如下:
select * from table(f_normal(5));
如果需要多列的話,需要先定義乙個物件型別。可以把物件型別替換上面語句中的number;
定義物件型別:
create or replace type type_row as object
( id int,
name varchar2(50)
)
修改表物件型別的定義語句如下:
create or replace type type_table is table of type_row;
1)、管道化表函式方式:
create or replace function f_pipe(s number)
return type_table pipelined
as v_type_row type_row;
begin
for i in 1..s loop
v_type_row := type_row(i,to_char(i*i));
pipe row(v_type_row);
end loop;
return;
end f_pipe;
測試:select * from table(f_pipe(5));
2)、 普通的方式:
create or replace function f_normal(s number)
return type_table
as rs type_table:= type_table();
begin
for i in 1..s loop
rs.extend;
rs(rs.count) := type_row(rs.count,'name'||to_char(rs.count));
--result(result.count) := type_row(null,null);
--rs(rs.count).name := rs(rs.count).name || '***x';
end loop;
return rs;
end f_normal;
測試:select * from table(f_normal(5));
其他**段
把許可權(和)值拆分成多條記錄
create or replace type type_table_number is table of number;
create or replace function f_right_table(
rights number
) --自定義table型別 --pipelined 管道關鍵字
return type_table_number pipelined
as
begin
--呼叫方法:select column_value as right from table(f_right_table(power(2,15)*2-2));
for i in 1..15 loop
if bitand(rights,power(2,i))=power(2,i) then
pipe row(power(2,i)); --pipe row 特定寫法,輸出記錄
end if;
end loop;
return;
end f_right_table;
一種遍歷資料的方法,
只是演示myrow,myrow 就相當於乙個臨時變數
for myrow in (
select 2 as right from dual where bitand(rights,2)=2
union
select 4 as right from dual where bitand(rights,4)=4
) loop
rs.extend;
rs(rs.count) := myrow.right;
end loop;
二.其他實現
包裡面用乙個儲存過程,返回游標,就可以了
>包的定義
1) 包頭
create or replace package mypk
as
type t_cursor is ref cursor;
procedure proc(name varchar2,c out t_cursor,a number);
end;
2) 包體
create or replace package body mypk
as
procedure proc(name varchar2,c out t_cursor,a number)
as
begin
open c for select * from test where id=a and name=name;
end proc;
end;
這個方案的侷限性太大,無法實現select * from function()的要求
呼叫:
declare
cur_out_arg mypk.t_cursor;
rec_arg test%rowtype;
begin
mypk.proc('abc',cur_out_arg,3);
--open cur_out_arg;
loop
--提取一行資料到rec_arg
fetch cur_out_arg into rec_arg;
--判讀是否提取到值,沒取到值就退出
--取到值cur_out_arg%notfound 是false
--取不到值cur_out_arg%notfound 是true
exit when cur_out_arg%notfound;
dbms_output.put_line(rec_arg.id||'-'||rec_arg.name);
end loop;
--關閉游標
close cur_out_arg;
end;
Oracle資料庫返回字元型別 1 1的結果處理
如果實體類中定義的字段是string型別,oracle資料庫中返回的是數字型別,那麼oracle返回0.的時候會丟失前面的0。要想不丟失0,那麼資料庫返回的就要是字串型別的,所以要將返回值轉換成字串型別。例如 select2 3from dual 返回的是數字 select to char 2 3 ...
struts json型別返回結果異常問題
struts2的aciton返回結果是json型別,其工作機制是把action中所有get 方法的 轉換成json串返回到前台。當乙個物件 是通過spring依賴 注入到action中,若其有相應get方法,並且action配置中返回結果型別是json,則struts 的json在把get 的 轉換...
mysql query 返回的型別or結果集
mysql query 如果裡面放的是查詢之類的語句,那返回的是資源,說白了就是你要查的資料結果集 如果裡面放的是增刪改之類的語句,那返回的是true或者false了。如果你要使用這個資料結果集,必須用mysql result mysql fetch array mysql fetch row 等函...