编译oracle表格

发布于 2024-11-14 14:21:29 字数 247 浏览 4 评论 0原文

我想知道,我可以在不使用 Oracle Form Builder 的情况下编译 oracle 表单吗?

我的意思是有没有命令可以在不打开 oracle 表单的情况下编译它们?我正在使用批处理文件来编译它们,但是对于每个文件,它都会打开一次 oracle form &关闭它,所以我不能做任何其他事情...请建议我。

我需要它用于 Oracle Forms 6i & 10克形式。

如果出现任何错误,我还需要日志文件。

I want to know, can I compile oracle forms without using Oracle Form Builder?

I mean is there any command for compile them without open the oracle form? I am using a batch file for compile them, but for each file it open one time oracle form & close it, so I can not do any thing else... please advice me.

I need it for Oracle forms 6i & 10g forms.

I need log file as well if any error hits.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何以笙箫默 2024-11-21 14:21:29

程序 frmcmp 可以从命令行运行来编译单个表单:

frmcmp userid=un/pw module=%%f batch=yes module_type=form compile_all=yes window_state=minimize

要执行许多操作,您需要创建一个批处理文件(假设在 Windows 上),例如:

for %%f IN (*.fmb) do frmcmp userid=un/pw module=%%f batch=yes module_type=form compile_all=yes window_state=minimize

任何错误都会写入具有相同内容的文件中名称与格式相同,但扩展名为“.err”。

The progam frmcmp can be run from the command line to compile a single form:

frmcmp userid=un/pw module=%%f batch=yes module_type=form compile_all=yes window_state=minimize

To do many you need to create a batch file (assuming on Windows) like:

for %%f IN (*.fmb) do frmcmp userid=un/pw module=%%f batch=yes module_type=form compile_all=yes window_state=minimize

Any errors are written to a file with the same name as the form but with extension ".err".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文