如何在Oracle形式下使用FTP服务!
我正在为我的应用程序使用 Oracle 表单。 我想将一个目录从本地计算机复制到 ftp 地址。 您能帮助我如何在 oracle 形式中处理这个问题吗?或者是否可能?有什么设施可以轻松帮我做到吗? 我正在考虑使用命令提示符,但我不知道如何控制所有事情,我的意思是它不应该可靠。因为 100% 我需要确保所有文件都复制到目标文件夹。
我需要处理所有错误,例如 ftp 空间不足。
PS 不要忘记我正在使用 oracle 形式。如果您提供任何代码,我非常感谢您。
谢谢。
我用谷歌搜索了一下,找到了这段代码:
http://www.oracle-base.com/articles/misc/FTPFromPLSQL.php
我想知道如何发送一个文件夹?我很难找到文件夹中的所有对象:(
I am using Oracle forms for my application.
I would like to copy one directory from my local computer to a ftp address.
would you please help me how I can handle this problem in oracle forms or is it possible or not? is there any facility do it for me easily?
I thinking about using command prompt but I do not have any idea about how I can control every thing I mean it should not be reliable. because 100% I need to sure all files copy to the destination folder.
I need to handle all error like not enough space in ftp.
P.S. dont forget I am using oracle form. if you provide any code I am so appreciate you.
Thanks.
I googling a little bit I arrive to this code :
http://www.oracle-base.com/articles/misc/FTPFromPLSQL.php
I want to know how we can send one folder? It is so hard for me find all the object inside of my folder :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看引用的代码中发生的情况,您会发现它们正在从 Oracle 调用 shell 命令,因为它没有内置的 FTP 功能。您需要做的就是类似地编写一个 shell 脚本来返回目录的内容(我假设在 *nix 上使用
ls
)。If you look at what's going on in the referenced code, you'll see that they are calling shell commands from Oracle, as it has no built-in FTP functionality. What you'd need to do is similarly write a shell script to return the contents of the directory (using
ls
on *nix I assume).