Hi all,
Just started a small, simple WebApp from scratch using NT6.
Got a simple OrderHeader table, with an autoincrementing ID, and a child OrderLines table (which also contains an autoinc ID).
When I generate a form in NT6 to add a new OrderHeader, it is telling me that OHD:ID cannot be blank or zero - I am not getting a number generated, it looks like.
I think I have activated all the server side stuff:
In the Table Properties, the 'Driver Options' is /AUTOINC=SCOPE_IDENTITY()
Under 'Options' I have 'EmulateAutoNumKey' set to 1
In the Field options for ID, I have:
AutoNumber set to '1,1'
IsIdentity set to 1
ServerAutoIncColumn set to 1
In the SQL database, I have the 'Identity' field set to 1.
Anything I have to do within NT6 itself to get the auto numbering to work as it should?
Thanks!