Hi,
I have a table that has an ID field (integer) that is the Primary Key and it auto-increments.
When I try to add a record to the database, I get the following error:
Cannot insert the value NULL into column 'id', table 'group.dbo.tblmembers'; column does not allow nulls. INSERT fails.
If I remove the Id column, I can add data to the other fields in the table. If I manually edit the table and add data to the other columns the id field increments.
Thanks for any help.
I have a table that has an ID field (integer) that is the Primary Key and it auto-increments.
When I try to add a record to the database, I get the following error:
Cannot insert the value NULL into column 'id', table 'group.dbo.tblmembers'; column does not allow nulls. INSERT fails.
If I remove the Id column, I can add data to the other fields in the table. If I manually edit the table and add data to the other columns the id field increments.
Thanks for any help.