Oracle:不允许在插入语句中使用哪些调用函数的符号参数?
为什么 Oracle 10 R2 不允许在插入语句中调用函数时使用符号参数?
在我的应用程序中,我在插入语句中调用函数。如果使用参数传递的符号方法,我会收到ORA-00907:缺少右括号
错误消息
INSERT INTO foo
(a,
b,
c)
VALUES (c,
F1(P1=>'1', P2=>'2', P3 => '3'),
e)
将其更改为基于位置的参数传递,并且编译相同的代码时不会出现错误。
INSERT INTO foo
(a,
b,
c)
VALUES (c,
F1('1','2','3'),
e)
为什么会这样呢?
Why does Oracle 10 R2 not allow use of notational parameters while calling functions in insert statements ?
In my app, I'm calling a function in an insert statement. If use notational method of parameter passing, I get an ORA-00907: Missing right parenthesis
error message
INSERT INTO foo
(a,
b,
c)
VALUES (c,
F1(P1=>'1', P2=>'2', P3 => '3'),
e)
Changing the same to position based parameter passing, and the same code gets compiled with no errors.
INSERT INTO foo
(a,
b,
c)
VALUES (c,
F1('1','2','3'),
e)
Why is this so ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为它是 11g 中添加的功能。
Because it was a feature added in 11g.