I have a primary key column year in my form.
Whenever the user creates a new form he should populate this field from the drop down.
But if the user makes a mistake and does not select anything from the drop down a null string gets appended "". And when post operation is selected the record gets created in the database table.
My question:
When user posts to the database after making his selection: the primary key column ends up accepting the null string ""
Shouldn't this throw an error as the primary key field should never have a null/empty string ?
I checked the table creation script and the column is set to Not Null and no default value is assigned.
I am using SQL Server 2008.
NULLand a empty string are NOT the same. An empty string""should not be called null string - that's just asking for confusion and trouble ..... – marc_s Nov 14 '12 at 16:31yearanyway? I would expect that to be some type of integer rather than a string. – Martin Smith Nov 14 '12 at 16:32