Date field cannot be null!

Visual Basic 2005 Professional Edition:

I have an SQL database table that includes a BirthDate field. I would like to have this field as optional when adding a record, but, SQL insists on throwing an exception if the field is null.



Answer this question

Date field cannot be null!

  • chale

    I went into DataSetDesigner and in Properties I set AllowDbNull to True.

    But, when I tried to change the NullValue property from "Throw Exception" to "Empty" or "Nothing" (there are only 3 choices) it said "For columns not defined as System.String, the only valid value is (Throw exception)".


  • mfsumption

    The following exception occurred in the DataGridView:

    System.Data.NoNullAllowedException: Column 'BirthDate' does not allow nulls

    I set 'AllowDbNull'  to True in the properties field of the DataSet Designer, replied 'Yes' to 'Save Changes', but, when I go back in, 'AllowDbNull' is back to False.

     


  • Vnsmith5

    Given that you've just allowed nulls, the value of the NullValue property is irrelevant, as the exception should never be raised.



  • Jim Reyne

    With this it looks like your table design has the field set not to allow nulls. You will have to alter the table definition to allow nulls for that field. This can be done in raw tsql, or using the table design views in either of the management studio tools.



  • FabrizioC

    ok - I've done some research on this (I'm a SQL guy, not a VS guy) and it looks like there may be a bug in the Dataset Designer for non-string columns. I found what looks like a workaround here: http://www.codeproject.com/useritems/Bug_fixed_in_DataDesigner.asp

    Hope this helps



  • Date field cannot be null!