表格 6i 中的光标
我正在研究 Forms 6i。我想在游标中使用 case
表达式。但代码无法编译。
Forms 6i 不支持光标中的 case 表达式吗?还有其他方法可以在 Forms 中编写 case 表达式吗?
I am working on Forms 6i. I want to use a case
expression in a cursor. But the code does not compile.
Does Forms 6i not support the case expression in cursor? Is there any other method to write case expression in Forms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在我能想到的几乎所有情况下,您都可以使用嵌套的解码而不是情况。
另一种可能
更优雅的
可能性是创建数据库视图并在表单中使用它,因此表单 6i 永远不会看到
case
。In almost all cases I can think of, you can use nested
decode
s instead ofcase
.Instead of
you can write
The other, probably more elegant possibility, is to create a database view and use it in forms, so forms 6i never sees the
case
.这是因为 Forms 6i 中使用的 pl/sql 引擎很“旧”,并且在开发时不知道
CASE
语句。 (我记得,服务器端 pl/sql 仅在 Oracle 9i 中引入了CASE
语句)我没有表单生成器 9i 的副本,因此无法评论该版本,但
CASE< /code> 语句在 Forms 10g 及更高版本中可用。
It's because the pl/sql engine used in Forms 6i is "old" and wasn't aware of
CASE
statements when it was developed. (As I recall, server side pl/sql only introducedCASE
statements at Oracle 9i)I don't have a copy of form builder 9i so can't comment on that version but
CASE
statements are available in Forms 10g and above.