本文共 720 字,大约阅读时间需要 2 分钟。
oracle 创建函数遇到的坑
-- 添加函数
create or replace function test110(paramVal VARCHAR2)
return number is pragma AUTONOMOUS_TRANSACTION;
paramValue number;
begin
select t.CURRENT_VALUE into paramValue from sys_auto_increment t where t.name = paramVal;
paramValue:=paramValue+1;
update sys_auto_increment t set t.CURRENT_VALUE = paramValue where t.name =paramVal;
commit;
return paramValue;
end;
-- 查询函数
select test110('test') from dual
当遇到ORA-06575: Package or function TEST110 is in an invalid state 时,除了语法验证之外,看看每一行的sql是否有分号结尾,没有分号也会提示这个错误!
注意:不应当有分好的额地方如果有分号也会提示这个异常!
当出现cannot perform a DML operation inside a query
是由于oracle的事务造成的,查询的时候不允许与跟新插入的操作,可以在 return 类型is 后面添加 pragma AUTONOMOUS_TRANSACTION; 并且在跟新语句下加上commit命令,就可以了
如:
转载地址:http://xqhiv.baihongyu.com/