由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - help! 怎么insert一个多行的string
相关主题
JDBC<======================>Oracle8i[转载] JDBC 处理日期的问题(日期插入数据库)
SQL table row counts问题求解 (informix)Oracle Insert 语句求教
Informix Geodetic DatabladeJDBC: How to get Identity after insert
how to improve the performance of Oracle Insert operation?some JDBC Oracle related questions
Re: how to improve the performance of Oracle Insert operation?请教一个sql server的问题
dbi informix text insertions question一个JDBC的问题,希望大家指教!
请问哪里有sql语句追踪工具HELP! SQL Server vs JDBC question
请教一个在stored procedure 里用bcp的问题.急问一个奇怪的sql server数据库问题
相关话题的讨论汇总
话题: insert话题: string话题: 多行话题: test话题: 换行符
进入Database版参与讨论
1 (共1页)
a****r
发帖数: 154
1
insert一个有换行符的string (比如bbs中文章的content)
俺用的是informix dbaccess.
但是用如下语句时出错.
insert into Discussion
(id, subject, body)
values (1, "test",
"test
test
test");
俺试了用\n代替换行符, 但结果不对。 any idea?
Thanks.
b*******s
发帖数: 16
2
不知道你在什么host language下用
sql行还是一行一行加上去的好,不必一次加多行
或者就加在一行上也可以

【在 a****r 的大作中提到】
: insert一个有换行符的string (比如bbs中文章的content)
: 俺用的是informix dbaccess.
: 但是用如下语句时出错.
: insert into Discussion
: (id, subject, body)
: values (1, "test",
: "test
: test
: test");
: 俺试了用\n代替换行符, 但结果不对。 any idea?

a****r
发帖数: 154
3

俺在用JDBC.
一次加一行似乎不可行吧。

【在 b*******s 的大作中提到】
: 不知道你在什么host language下用
: sql行还是一行一行加上去的好,不必一次加多行
: 或者就加在一行上也可以

b*******s
发帖数: 16
4
那也许需要得到系统的分行符来加进去
或者为什么不干脆写在一行上?

【在 a****r 的大作中提到】
:
: 俺在用JDBC.
: 一次加一行似乎不可行吧。

y***e
发帖数: 39
5
I'm not sure. But if you mean you are using JDBC with Java,
maybe you can try to use single quote instead of double quote.
I use "\n" and it's fine.

【在 a****r 的大作中提到】
:
: 俺在用JDBC.
: 一次加一行似乎不可行吧。

a*****e
发帖数: 1700
6
对呀,应该是 ' 不是 " 才对.. 不过没有用过 informix,不太清楚

【在 y***e 的大作中提到】
: I'm not sure. But if you mean you are using JDBC with Java,
: maybe you can try to use single quote instead of double quote.
: I use "\n" and it's fine.

1 (共1页)
进入Database版参与讨论
相关主题
急问一个奇怪的sql server数据库问题Re: how to improve the performance of Oracle Insert operation?
问一个可能看起来很怪的问题dbi informix text insertions question
请教一个问题,big data入库请问哪里有sql语句追踪工具
谁能帮我看看这个Insert语句要怎么改一下?请教一个在stored procedure 里用bcp的问题.
JDBC<======================>Oracle8i[转载] JDBC 处理日期的问题(日期插入数据库)
SQL table row counts问题求解 (informix)Oracle Insert 语句求教
Informix Geodetic DatabladeJDBC: How to get Identity after insert
how to improve the performance of Oracle Insert operation?some JDBC Oracle related questions
相关话题的讨论汇总
话题: insert话题: string话题: 多行话题: test话题: 换行符