gpt4 book ai didi

ruby - 如何在 Ruby 中运行 Oracle 存储过程

转载 作者:太空宇宙 更新时间:2023-11-03 17:37:39 29 4
gpt4 key购买 nike

我已获得 Oracle 数据库的读取权限,可以为我自己的数据库获取数据。 DBA 给了我一个存储过程,他向我保证这就是我所需要的,但我至今无法从 Ruby 运行它。

我安装了 ruby​​-oci8 gem 和 oracle 即时客户端。

这是我到目前为止所管理的。

require 'oci8'
conn = OCI8.new('user','pass','//remoteora1:1521/xxxx')
=> #<OCI8::RWHRUBY>
cursor = conn.parse("call REPOSITORY.GET_PMI_ADT( '722833', 'W', null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null)")
=> #<OCI8::Cursor:0x56f4d50>

这就是我卡住的地方。我有这个 OCI8::Cursor 对象,但我不知道如何处理它。它应该返回一大堆结果(空值在查询中),但我什么也没得到。使用和不使用参数运行 cursor.exec(虽然我不确定我需要什么参数)会给我错误。

cursor.exec 给出

OCIError: ORA-06553: PLS-:
ORA-06553: PLS-:
ORA-06553: PLS-:
ORA-06553: PLS-306: wrong number or typ
ORA-06553: PLS-306: wrong number or type of arguments in call to 'GET_PMI_ADT'
ORA-06553: PLS-306: wrong number or type of arguments in call to 'GET_PMI_ADT'
ORA-06553: PLS-306: wrong number or type of arguments in call to 'GET_PMI_ADT'
ORA-06553: PLS-306: wrong number or type of arguments in call to 'GET_PMI_ADT'
ORA-06553: PLS-306: wrong number or type of arguments in call to 'GET_PMI_ADT'
ORA-06553: PLS-306: wrong number or type of arguments in call to 'GET_PMI_ADT'
ORA-06553: PLS-306: wrong number or type of arguments in call to 'GET_PMI_ADT'

等...

cursor.fetch 给出

OCIError: ORA-24338: statement handle not executed

这里有人有什么想法吗?我完全无法理解。

此处为仍在观看的任何人更新。如果我将存储过程更改为

BEGIN REPOSITORY.GET_PMI_ADT( '722833', 'W', null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); END;

我现在得到错误;

OCIERROR: ORA-06550: line 1, column 45:
PLS-00363: expression ' NULL' cannot be used as an assignment target

这是否确认存储过程不正确?有什么明显的办法可以纠正它吗?

最佳答案

这应该有帮助:

http://rubyforge.org/forum/forum.php?thread_id=11295&forum_id=1078

示例如下:

msi是IN变量状态,remaining_credit是OUT变量

cursor = conn.parse ('begin ROAMFLEX.GETMSISDNSTATUS(:msi, :status, :remaining_credit); end;')
cursor.bind_param(':msi', '250979923')
cursor.bind_param(':status', nil, String, 20)
cursor.bind_param(':remaining_credit', nil, String, 50)
cursor.exec()
puts cursor[':status']
puts cursor[':remaining_credit_amount']

关于ruby - 如何在 Ruby 中运行 Oracle 存储过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11608289/

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