Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
The business object is expecting a certain structure for the stored procedures. The structure depends upon the UpdateConcurrencyType that you have configured. In the DDT help file, under Tables -> Table CRUD Stored Procedures, you will find examples of the stored procedures that the business object is expecting. Most likely, you still have the UpdateConcurrencyType set to OptimisticAllFields, which is the default. If that is the case, the business object is expecting to send all of the fields twice so that it can check the concurrency before it does the actual update. Your best bet is going to be to set the concurrency to OptimisticRowVersion, which means you will need to add a row version column to your table or just set the concurrency to Off, which won't send any extra fields in the update.
|