I have a problem with a windows CE program I tested my code in an emulator with my visual studio 2005 and works nice The program should insert a number in a table from ms server but when i tried to run my program in the real device i get the error from try to insert null value in a non-null field
This is muy table
id (int) <<-- this field is a identity
codigo (int)
And this is my insert query:
INSERT INTO codigos (codigo) VALUES variable_codigo
I dont know why in the emulator works but in the real device not =/
Thnks