Fosdccf.blog.chinaunix.net
sdccf
全部博文(19283)
Linux酷软(214)
tmp(0)
PostgreSQL(93)
Solaris(383)
AIX(173)
SCOUNIX(575)
DB2(1005)
Shell(386)
C/C++(1187)
MySQL(1750)
Sybase(465)
Oracle(3695)
Informix(548)
HP-UX(0)
IBM AIX(2)
Sun Solaris(0)
BSD(1)
Linux(8597)
SCO UNIX(23)
2011年(1)
2009年(125)
2008年(19094)
2007年(63)
clifford
linky521
曾德标
fengzhan
leon_yu
mcuflowe
yt200902
guanyuji
GY123456
snow888
carlos94
丸喵喵
sean229
cxunix
可怜的猪
cqxc413
xzzgege
wb123456
分类: Sybase
2008-04-10 21:02:49
使用sybase jdbc driver得到: connection conn 多次使用: conn.setAutoCommit(b) b 为相同的true|false时, 报错: SET CHAINED command not allowed within multi-statement transaction. 解决方法: if (conn.getAutoCommit()!=b) { conn.setAutoCommit(b); } 代替: conn.setAutoCommit(b). 使用其它数据库(如oracle)则不会出现上述问题。
使用sybase jdbc driver得到:
connection conn
多次使用:
conn.setAutoCommit(b)
b 为相同的true|false时,
报错:
SET CHAINED command not allowed within multi-statement transaction.
解决方法:
if (conn.getAutoCommit()!=b) { conn.setAutoCommit(b); } 代替: conn.setAutoCommit(b).
使用其它数据库(如oracle)则不会出现上述问题。
上一篇:教你怎样轻松解救你的Sybase数据库
下一篇:教你学会怎样升级到SQL Anywhere 10(1)
登录 注册