You are not logged in.
Pages: 1
Hi All,
I modified sample-16, and add ZeosLib for connecting firebird db,
On sample-16 Client , this query is working
select '%' ATEXT from RDB$DATABASE
union
select 'B' ATEXT from RDB$DATABASE
but not returning any rows for this query :
execute block RETURNS( ATEXT TVARCHAR15 )
as
begin
for
select x.* from
(
select '%' ATEXT from RDB$DATABASE
union
select 'B' ATEXT from RDB$DATABASE
) x into :ATEXT
do begin
suspend;
end
end
Is EXECUTE BLOCK not supported ?
Offline
Thank Ab for reply
After looking client code
if isSelect(pointer(SQL)) then begin
fTableJSON := fService.Execute(SQL,True,False);
... draw to grid
end else
fService.Execute(SQL,False,False);
after delete/comment out isSelect function
now 'Execute Block Returns' can run.
Offline
Pages: 1