完整性约束违规:NOT NULL检查约束

时间:2016-10-19 15:48:50

标签: java swing ms-access ucanaccess

ResultSet rs;

PreparedStatement ps;

Connection con;

public Attribute() {


    try{

         con = DriverManager.getConnection("jdbc:ucanaccess://D:/programming/myassignment/Database1.accdb");
        System.out.println("Java is now connected to database");


    }catch(Exception ex){
        System.out.println(ex);
    }

JButton btnAdd = new JButton("Add");
    btnAdd.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {


  try{

PreparedStatement pstmt = (PreparedStatement) con.prepareStatement("insert into table1(Attributes) values(?)");
                   pstmt.setString(1, textField.getText());
                   pstmt.executeUpdate();
                   pstmt.close();





            }catch (Exception ex){
                System.out.println(ex);

            }

        }
    });
    btnAdd.setBounds(152, 203, 89, 23);
    contentPane.add(btnAdd);

此代码连接到数据库,但每当我插入属性时,它都会出现上述错误。

这个数据库由两个类使用。第一个类将类名插入ClassName列,然后我将点击Add attribute按钮打开上面提到的类。当我在此插入属性并按"添加"按钮,它给出以下错误:

net.ucanaccess.jdbc.UcanaccessSQLException:UCAExc ::: 3.0.7完整性约束违规:NOT NULL检查约束; SYS_CT_10359表:TABLE1列:CLASSNAME

1 个答案:

答案 0 :(得分:2)

看起来表TABLE1在CLASSNAME列上有一个NOT NULL约束。

这意味着,如果没有CLASSNAME列的值,则无法在表中插入新行。

插入CLASSNAME后,您应该使用Attributes更新同一行。

您当前的代码尝试插入仅包含Attributes的新行,因此约束会引发错误。

您的更新声明应如下所示。

PreparedStatement pstmt = (PreparedStatement) con.prepareStatement("update table1 set Attributes = ? where CLASSNAME = ?");
pstmt.setString(1, textField.getText());
pstmt.setString(2, "Previously Inserted Classname");

另外,检查表是否有任何其他约束(包括唯一的主键)