Problem with Unidac+Firebird
Posted: Wed 06 May 2015 08:48
Hi support.
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:
this work fine, but this:
This always return zero via ....GetProp(prRowsUpdated, v) into v
WBR
Janex
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