Com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException:列‘hourID’不能为Null

oalqel3c  于 2022-12-10  发布在  Mysql
关注(0)|答案(4)|浏览(136)

我的项目是教师分配。当我尝试插入数据时,它显示以下异常。

"com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: 
Column 'hourId' cannot be null"

有谁能帮我解决这个问题吗?请提供示例代码以避免此异常。
我的编码是

<%
    Connection con = null;
    String StaffName = request.getParameter("StaffName");
   // String subcode = request.getParameter("subcode");
    String hourId = request.getParameter("hourId");
    String daysId = request.getParameter("daysId");
    String date = request.getParameter("date");

  //String queryText = "insert into tblstaffallocation (StaffName, subcode,hourId, daysId, date) values('"+StaffName+"','"+subcode+"','+hourId+','+daysId+','+date+')";

    try {
          Class.forName("com.mysql.jdbc.Driver");
          con = DriverManager.getConnection("jdbc:mysql://localhost:3306/StaffAllocation","root","success");

       // PreparedStatement stat = con.PrepareStatement();
        String updateString ="INSERT INTO tblstaffallocation (StaffName,hourId,daysId,date) VALUES (?,?,?,?)";

        PreparedStatement preparedStatement = con.prepareStatement(updateString);

        preparedStatement.setString(1, StaffName);
        preparedStatement.setString(2, hourId);
        preparedStatement.setString(3, daysId);
        preparedStatement.setString(4, date);
        preparedStatement.executeUpdate();
        //int rst = stat.executeUpdate("insert into tblstaffallocation ('StaffName','hourId', 'daysId', 'date') values('"+StaffName+"','"+hourId+"','"+daysId+"','"+date+"')");

        %>
        <table cellpadding="4" border="1" cellspacing="4" align="center">
        <th>StaffName</th><th>hourId</th><th>daysId</th><th>date</th>
        <%
        Statement st=con.createStatement();
        ResultSet rs=st.executeQuery("select * from tblstaffallocation");
        while(rs.next()){
            rs.getString(1);
            rs.getString(2);
            rs.getString(3);
            rs.getString(4);

        }
        } catch (Exception e) { 
        out.print(e);

    }
uqjltbpv

uqjltbpv1#

错误提示hourId的值为NULL,因此必须避免。例如,您可以使用:

String hourId = request.getParameter("hourId");
if (hourId==null)
    hourId="";

只要该列接受空字符串。否则,您必须更改表定义以允许空值:

ALTER TABLE tblstaffallocation
   MODIFY COLUMN hourId INTEGER NULL;
kwvwclae

kwvwclae2#

这是一个很好的做法,每个表都有主键,并且主键的键属性不允许空值...ORM/Hibernate严格遵循这一原则,其中每个实体/持久Bean都应该有主键。您的问题的答案是,您正在尝试将空值插入到主列中。所以你得到了例外...下面的代码不是很好的做法。如果您故意使您的列可以为空,那么尝试插入空/空值显然没有意义。最好在实际开始实现应用程序之前设计您的数据模型。

if (hourId==null)
    hourId="";

希望这能对你有所帮助。
干杯!

dwbf0jvd

dwbf0jvd3#

在创建表时,列hourID设置为非空值,并且您正尝试使用空值进行更新。您可以更改TABLE以接受hourID为空,或者为hourID设置一些缺省值

e5nszbig

e5nszbig4#

让我们来检查一下休眠的场景。
解决方案:
1.检查实体与表的Map关系。
2.检查主键和外键的关系。
3.主键在表中不能为非空,在其他表中可以为空。

相关问题