The driver trucates queries with UpdateMode upWhereKeyOnly
Posted: Wed 28 Oct 2009 11:48
I tried with dbexpmda.dll v4.40.0.18, Delphi 7
The driver trucates queries with UpdateMode is upWhereKeyOnly and I try to change the field in Key.
Here is the link with a test project:
http://www.winarhi.ro/temp/test.zip
When I call ApplyUpdates the driver generate truncated query like this:
And shold be:
The driver trucates queries with UpdateMode is upWhereKeyOnly and I try to change the field in Key.
Here is the link with a test project:
http://www.winarhi.ro/temp/test.zip
When I call ApplyUpdates the driver generate truncated query like this:
Code: Select all
update test1 se
where
A = 'test'
Code: Select all
update test1 set A = 'other'
where
A = 'test'