DB2:如何插入带有换行符的 clob

发布于 2024-09-26 06:49:24 字数 269 浏览 8 评论 0原文

我有一件简单的事情想做,但在尝试和完成时却非常令人沮丧。我只想获取一些像这样的值:

'a value with
line breaks'

并将其插入到 CLOB 字段中并在 DB2 中保留换行符。像这样的语句

insert into some_table (the_clob_field) VALUES('a value with
line breaks');

会导致插入带有换行符的值。

I have a simple thing which I want to do, yet is so frustrating in attempting and completing. I just want to take some value such as this:

'a value with
line breaks'

And insert it into a CLOB field and retain the line breaks in DB2. Something like this statement

insert into some_table (the_clob_field) VALUES('a value with
line breaks');

causes a value with line breaks to be inserted.

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

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

发布评论

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

评论(2

゛时过境迁 2024-10-03 06:49:24

另一种选择是

insert into some_table (the_clob_field) VALUES('a value with ' || chr(10)
||'line breaks');

Another alternative is

insert into some_table (the_clob_field) VALUES('a value with ' || chr(10)
||'line breaks');
半透明的墙 2024-10-03 06:49:24
insert into sometable the_clob_column values(?);

然后设置参数以指向您的文本对象。

insert into sometable the_clob_column values(?);

Then set the parameter to point to your text object.

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