I have a weird issue, using sdac 4.70.0.46, Delphi 2007 and mssql 2008.
I have a table.
I have editors.
When I delete or add a preceding space in a field on the record, the field does not get updated to the database.
i.e, I deleted a preceding space on the name, and added a preceding space to an address line.
dbmonitor shows other fields being updated, but not these two fields, so the actual data does not get updated:
UPDATE Cust
SET
AddressBlock = ?, BillAddressBlock = ?, MailAddressBlock = ?, EditDateTime = ?, EditCount = ?
WHERE
RecUID = ?
Is there a flag I should or should not be setting?
it seems that it is not updating unchanged fields (which is fine), but these fields ARE changing.