使用 ANT 插入 CLOB 数据

发布于 2024-08-16 11:15:59 字数 326 浏览 5 评论 0原文

我正在尝试使用 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 技术交流群。

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

发布评论

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

评论(1

你另情深 2024-08-23 11:15:59

从我在此 询问Tom 文章,应该可以只插入 VARCHAR2 值,如下所示:

create table t ( x clob );

insert into t values ( 'MY CLOB CONTENT' );

编辑
如果您想从文件插入,应该可以使用 loadfile 任务将文件放入属性中,以某种方式替换换行符并在插入中使用该属性。

From what I see in this Ask Tom article, it should be possible to just insert VARCHAR2-values like that:

create table t ( x clob );

insert into t values ( 'MY CLOB CONTENT' );

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.

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