我正在使用映射程序文件和代码文件来调用数据库。 我有一个类似
的声明session.insert("mapper.xml", pojo);
在mapper中,我的代码如下:
<insert id="mapperid" parameterType="pojoType">
INSERT INTO MY_TABLE (
SEQ_FIELD
) VALUES (
SEQ_MY.NEXTVAL
)
</insert>
该语句执行时出现以下错误。
org.apache.ibatis.exceptions.PersistenceException:
### Error updating database. Cause: java.sql.SQLException: ORA-00001: unique constraint (DM.TABLE_SEQ_PK) violated
谢谢