I have an situation when using the refreshrecord method on a TMyQuery having the FilterSQL filled, the UpdatingTable filled and the FullRefresh option set to true !
I'm getting this error :
"Refresh Failed. Found 620 records"
When setting the FullRefresh option to false, everything works.
The SQL Query is looking like this :
Code: Select all
SELECT
table1.*,
table2.*
FROM
table1,
table2,
table3
WHERE
(table1.Id = table2.id)Code: Select all
(table2.ID2 like table3.ID3) AND ( table3.User = @User) AND (table1.Name like ' %name%')Code: Select all
table1