由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 用java访问数据库
相关主题
hwo to insert vedio into Java applet这两个程序哪个更快?
HELP! SQL Server vs JDBC questionJDBC如何获取新加入的记录的索引
how to change the input mode?请教一个多线程lock机制的问题
solvedRe: how to change the input mode?help-splay tree!!!
ObjectOutputStream.writeObject(Hashtable) ?网站国际化的问题
simple swing questionhow to insert a node in existing xml
请教高手一个JDBC的问题!junit test问题
Question about tab请问StringBuffer的OutofMemory问题
相关话题的讨论汇总
话题: error话题: duplicate话题: unique话题: cannot话题: key
进入Java版参与讨论
1 (共1页)
w***y
发帖数: 6251
1
因为我定义的table里面有些属性是UNIQUE的,所以往里插入数据的时候,遇到duplicate
insertion就会有error返回
java.sql.SQLException: ERROR: Cannot insert a duplicate key into unique index
protein_protname_key
at org.postgresql.core.QueryExecutor.execute(QueryExecutor.java:94)
at org.postgresql.Connection.ExecSQL(Connection.java:398)
at org.postgresql.jdbc2.Statement.execute(Statement.java:130)
at org.postgresql.jdbc2.Statement.executeUpdate(Statement.java:73)
at CaptionProcessor.writeFacts(Capt
Q**g
发帖数: 183
2
try {
your insertion statments here....
}catch (java.sql.SQLException e) {
String msg = e.getMessage();
if (msg==null||!msg.startsWith("ERROR: Cannot insert a duplicate key"))
throw e;
}

【在 w***y 的大作中提到】
: 因为我定义的table里面有些属性是UNIQUE的,所以往里插入数据的时候,遇到duplicate
: insertion就会有error返回
: java.sql.SQLException: ERROR: Cannot insert a duplicate key into unique index
: protein_protname_key
: at org.postgresql.core.QueryExecutor.execute(QueryExecutor.java:94)
: at org.postgresql.Connection.ExecSQL(Connection.java:398)
: at org.postgresql.jdbc2.Statement.execute(Statement.java:130)
: at org.postgresql.jdbc2.Statement.executeUpdate(Statement.java:73)
: at CaptionProcessor.writeFacts(Capt

w***y
发帖数: 6251
3
thx a lot:)

【在 Q**g 的大作中提到】
: try {
: your insertion statments here....
: }catch (java.sql.SQLException e) {
: String msg = e.getMessage();
: if (msg==null||!msg.startsWith("ERROR: Cannot insert a duplicate key"))
: throw e;
: }

1 (共1页)
进入Java版参与讨论
相关主题
请问StringBuffer的OutofMemory问题 ObjectOutputStream.writeObject(Hashtable) ?
怎样让一个servlet返回到jsp的HTML-object?simple swing question
JDBC请教高手一个JDBC的问题!
unit testing of hibernate applications?Question about tab
hwo to insert vedio into Java applet这两个程序哪个更快?
HELP! SQL Server vs JDBC questionJDBC如何获取新加入的记录的索引
how to change the input mode?请教一个多线程lock机制的问题
solvedRe: how to change the input mode?help-splay tree!!!
相关话题的讨论汇总
话题: error话题: duplicate话题: unique话题: cannot话题: key