在插入数据时报错:java.sql.SQLException: ORA-00001: 违反唯一约束条件 (NEWS.SYS_C005409) 如何解决?
createtableTOPIC(TOPICIDNUMBERnotnull,TNAMENVARCHAR2(100)notnull)tablespaceUSERSpctfr...
create table TOPIC
(
TOPICID NUMBER not null,
TNAME NVARCHAR2(100) not null
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
alter table TOPIC
add primary key (TOPICID)
using index
tablespace USERS
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
public boolean insert(Connection con, TopicDTO tdto) {
PreparedStatement ps = null;
String sql = "insert into topic values(?,?)";
int nIndex = 0;
boolean flag = false;
try {
ps = con.prepareStatement(sql);
ps.setInt(++nIndex, this.getMaxId(con)+1);
ps.setString(++nIndex, tdto.getTname());
if(ps.executeUpdate() > 0){
flag = true;
}
} catch (SQLException e) {
e.printStackTrace();
}finally{
sql = null;
DBHelp.close(null, null, ps, null);
}
return flag;
} 展开
(
TOPICID NUMBER not null,
TNAME NVARCHAR2(100) not null
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
alter table TOPIC
add primary key (TOPICID)
using index
tablespace USERS
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
public boolean insert(Connection con, TopicDTO tdto) {
PreparedStatement ps = null;
String sql = "insert into topic values(?,?)";
int nIndex = 0;
boolean flag = false;
try {
ps = con.prepareStatement(sql);
ps.setInt(++nIndex, this.getMaxId(con)+1);
ps.setString(++nIndex, tdto.getTname());
if(ps.executeUpdate() > 0){
flag = true;
}
} catch (SQLException e) {
e.printStackTrace();
}finally{
sql = null;
DBHelp.close(null, null, ps, null);
}
return flag;
} 展开
3个回答
展开全部
就是违反唯一约束呀,可能你ID重复了或者你设置的唯一键值,不要重复就是了
肯定是TOPICID的值重复了,调试下就知道了嘛
肯定是TOPICID的值重复了,调试下就知道了嘛
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
主键冲突么TOPICID getMaxId(con)+1 这里的值的问题吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询