I am working with DDT right now trying to get a more granular understanding of how to make it do its tricks.
I am trying to create a database from scratch in DDT, then deploy to server.
This is the first time I've tried having DDT create CRUD sprocs.
Table definition includes a timestamp
I have the update and delete sproc marked as optimistic timestamp
Deployment fails on creating update sproc saying you can't update a timestamp
Insert sproc fails saying use a field list and exclude timestamp or enter a default (not sure what works as a default for a timestamp - 0 and ' ' don't seem to.)
I see no way to influence how sprocs are going to be generated.
From previous messages in this thread I'm thinking maybe DDT doesn't handle sproc creation when there are timestamps. I tried deleting timestamp field, deploying, then adding timestamp, unchecking autogenerate sprocs and deploying again - of course that wiped out my crud sprocs as they had been initially creaeted by DDT and had the extended props.
Soooo - how do you have DDT generate sprocs that use Optimistic timestamp for update?
Sorry if I'm just being boneheaded but searched forum and don't really see an answer (or at least one that is simple enough for me to understand