gpt4 book ai didi

python读取oracle函数返回值

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章python读取oracle函数返回值由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

在oracle中创建一个函数,本来是想返回一个index table的,没有成功。想到文本也可以传输信息,就突然来了灵感,把返回值设置文本格式。 考虑到返回数据量可能会很大,varchar2类型长度吃紧,于是将返回值类型设置为clob。  我是用scott用户的测试表emp,这个是函数定义情况:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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测试这个函数的返回值:

?
1
2
3
begin
dbms_output.put_line(test_query_func( '30' ));
end;

输出结果: [('7499', 'ALLEN', 'SALESMAN', '1600'),('7521', 'WARD', 'SALESMAN', '1250'),('7654', 'MARTIN', 'SALESMAN', '1250'),('7698', 'BLAKE', 'MANAGER', '2850'),('7844', 'TURNER', 'SALESMAN', '1500'),('7900', 'JAMES', 'CLERK', '950')]  其实已经定义成一个python中列表中包含元组子元素的样式。  下面是python中的代码,用python连接oracle需要cx_Oracle库:

?
1
2
3
4
5
6
7
8
9
10
11
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中函数返回的长字符串值就转化为DataFrame对象了:

python读取oracle函数返回值

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

最后此篇关于python读取oracle函数返回值的文章就讲到这里了,如果你想了解更多关于python读取oracle函数返回值的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com