I found some bug with get RowsUpdated in Firebird 2.5 + UniDAC 6.0.1.
code: TDBAccessUtils.GetICommand(Self).GetProp(prRowsUpdated, v)
If update statement is as "clear" SQL, then all work fine, but
when update statement is IN execute block - GetProp always return 0.
for example:
Code: Select all
UPDATE MYTABLE SET MYROW = 1;
Code: Select all
EXECUTE BLOCK
AS
BEGIN
UPDATE MYTABLE SET MYROW = 1;
END
WBR
Janex