真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

用python讀取oracle函數(shù)返回值

在oracle中創(chuàng)建一個(gè)函數(shù),本來(lái)是想返回一個(gè)index table的,沒(méi)有成功。想到文本也可以傳輸信息,就突然來(lái)了靈感,把返回值設(shè)置文本格式。

創(chuàng)新互聯(lián)專注于福安企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè)公司,商城網(wǎng)站建設(shè)。福安網(wǎng)站建設(shè)公司,為福安等地區(qū)提供建站服務(wù)。全流程按需網(wǎng)站策劃,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

考慮到返回?cái)?shù)據(jù)量可能會(huì)很大,varchar2類型長(zhǎng)度吃緊,于是將返回值類型設(shè)置為clob。

我是用scott用戶的測(cè)試表,這個(gè)是函數(shù)定義情況:

create or replace function test_query_func(dept varchar2)
return clob
is
       type test_record is record
       (rec_empno       emp.empno%type,
        rec_ename       emp.ename%type,
        rec_job            emp.job%type,
        rec_sal            emp.sal%type);
       type test_query_arr is table of test_record index by binary_integer;
       cursor cur is select empno, ename, job, sal from emp where deptno = dept;
       test_query test_query_arr;
       i integer := 0;
 ss  varchar2(200) := '';
 res clob := '[';
begin
       for c in cur loop
           i := i + 1;
           test_query(i) := c;
       end loop;
       for q in 1..test_query.count loop
           ss := '(''' || test_query(q).rec_empno || ''', ''' || test_query(q).rec_ename ||  ''', ''' || test_query(q).rec_job || ''', ''' ||  test_query(q).rec_sal || ''')';
 if q < test_query.count then
    ss := ss || ',';
 end if;
 res := res || ss;
       end loop;
 res := res || ']';
 return res;
end;

可以在pl/sql developer測(cè)試這個(gè)函數(shù)的返回值:

begin
   dbms_output.put_line(test_query_func('30'));
end;

輸出結(jié)果:

[('7499', 'ALLEN', 'SALESMAN', '1600'),('7521', 'WARD', 'SALESMAN', '1250'),('7654', 'MARTIN', 'SALESMAN', '1250'),('7698', 'BLAKE', 'MANAGER', '2850'),('7844', 'TURNER', 'SALESMAN', '1500'),('7900', 'JAMES', 'CLERK', '950')]

其實(shí)已經(jīng)定義成一個(gè)python中列表中包含元組子元素的樣式。

下面是python中的代碼:

import cx_Oracle as ora;
con = ora.connect('scott/scott@oradb');
cur = con.cursor();
cur.execute('select test_query_func(30) from dual');
res = cur.fetchall()[0][0].read();
cur.close();
con.close();
data = eval(res);
import pandas as pd;
df = pd.DataFrame(data, columns = ['empno', 'ename', 'job', 'sal']);
print(df)


這樣oracle中函數(shù)返回的長(zhǎng)字符串值就轉(zhuǎn)化為DataFrame對(duì)象了:

 empnoenamejobsal
07499ALLENSALESMAN1600
17521WARDSALESMAN1250
27654MARTINSALESMAN1250
37698BLAKEMANAGER2850
47844TURNERSALESMAN1500
57900JAMESCLERK950

網(wǎng)站標(biāo)題:用python讀取oracle函數(shù)返回值
新聞來(lái)源:http://weahome.cn/article/gghedd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部