使用 ANT 插入 CLOB 数据
我正在尝试使用 Ant 来初始化我的 Oracle 数据库。我遵循了本指南:
http://www.roseindia.net/tutorials/ant/AntScripttoInsertDatainMysqlTable .shtml
并且可以工作,但我想知道是否有人知道如何使用 Ant 将 CLOB 数据插入到 Oracle 表中。
提前致谢。
I am trying to use Ant to initialize my Oracle database by using Ant. I followed this guide:
http://www.roseindia.net/tutorials/ant/AntScripttoInsertDatainMysqlTable.shtml
and that works but I was wondering if anyone knows how to insert CLOB data into Oracle tables using Ant.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从我在此 询问Tom 文章,应该可以只插入
VARCHAR2
值,如下所示:编辑
如果您想从文件插入,应该可以使用 loadfile 任务将文件放入属性中,以某种方式替换换行符并在插入中使用该属性。
From what I see in this Ask Tom article, it should be possible to just insert
VARCHAR2
-values like that:EDIT
If you want to insert from a file, it should be possible to use the loadfile task to get the file into a property, replace the newlines somehow and use that property in the insert.