C# WinForms - DataGridView/SQL Compact - Negative integer in primary key column - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T06:19:20Z http://stackoverflow.com/feeds/question/38510 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/38510/c-winforms-datagridview-sql-compact-negative-integer-in-primary-key-column 1 C# WinForms - DataGridView/SQL Compact - Negative integer in primary key column Brian Warshaw 2008-09-01T22:01:25Z 2008-09-15T07:44:18Z <p>I'm just getting dirty in WinForms, and I've discovered, through a lovely tutorial, the magic of dragging a database table onto the design view of my main form. So, all is lovely, I've got my DataGridView with all of the columns represented beautifully.</p> <p>BUT...</p> <p>When I run my application against this brand new, empty .sdf (empty save for the two tables I've created, which are themselves empty), I get a -1 in the column corresponding to my primary key/identity column whenever I try to create that first record.</p> <p>Any idea why this might be happening? If it helps, the column is an <code>int</code>.</p> http://stackoverflow.com/questions/38510/c-winforms-datagridview-sql-compact-negative-integer-in-primary-key-column/38532#38532 1 Answer by Craig for C# WinForms - DataGridView/SQL Compact - Negative integer in primary key column Craig 2008-09-01T22:14:53Z 2008-09-01T22:14:53Z <p>Since it is an Identity column and you haven't saved it to the database yet it is -1. I am assuming here that this is before you save the table back to the database, correct? You need to perform the insert before that value will be set correctly.</p> http://stackoverflow.com/questions/38510/c-winforms-datagridview-sql-compact-negative-integer-in-primary-key-column/38535#38535 0 Answer by Brian Warshaw for C# WinForms - DataGridView/SQL Compact - Negative integer in primary key column Brian Warshaw 2008-09-01T22:18:37Z 2008-09-01T22:18:37Z <p>Thanks, Craig. That did the trick. Any idea why it shows a -1 instead of something that doesn't raise so much alarm? :-)</p> http://stackoverflow.com/questions/38510/c-winforms-datagridview-sql-compact-negative-integer-in-primary-key-column/38553#38553 3 Answer by Matt Hamilton for C# WinForms - DataGridView/SQL Compact - Negative integer in primary key column Matt Hamilton 2008-09-01T22:38:45Z 2008-09-01T22:38:45Z <p>@Brian -1 is a good choice for the default value since no "real" rows are likely to have identities less than zero. If it defaulted to 0 or 1 then there'd be a chance that it'd clash with an existing row, causing a primary key violation.</p> <p>For applications that stay offline and create multiple rows before saving, a common practice is to continue counting backwards (-2, -3, -4) for each new row's identity. Then when they're saved, the server can replace them with the true "next" value from the table.</p>