如何在 Oracle Forms 中将变量大小限制为最大 32 KB?
我正在使用 Oracle Forms 6i,我想将函数返回值的大小限制为 32KB。我该怎么做?
I am working with Oracle Forms 6i and I want to limit the size of the return value of a functions in to 32KB. How can I do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您调用返回 VARCHAR2 的函数,则它已限制为 32,767 字节。
(如果您想将其限制为小于该值,您可以向函数添加一些验证代码来检查返回值长度,并在验证失败时引发异常)。
If you're calling a function that returns a VARCHAR2, it's already limited to 32,767 bytes.
(If you want to limit it to something less than that, you'd add some validation code to the function to check the return value length, and raise an exception if the validation fails).