Subject Re: [IBO] Transaction question
Author Harald Klomann
Riho-Rene Ellermaa wrote:
> After Refresh() and First(), I get the values OK. When I call
> InvalidateBookmark() and then try to access values, I get 0
> Seems like my bookmark calling is wrong

this is the syntax in Delphi :

procedure TForm1.Button1Click(Sender: TObject);
begin
IB_Query1.InvalidateBookmark(IB_Query1.Bookmark);
IB_Query1.Edit;
end;


Harald