Subject | Re: invalidate active record in a master/detail relationship |
---|---|
Author | |
Post date | 2019-07-17T14:50:33Z |
Argh.... this is strong. Here is my code, where dsqClients is a TIBOQuery (note I wasn't in charge of naming it):
var
lbm: TBookmark;
begin
lbm := dsqClients.GetBookmark;
dsqClients.InvalidateBookmark(lbm);
dsqClients.FreeBookmark(lbm);
end;
Yet the compiler balks at
dsqClients.InvalidateBookmark(lbm);
It wants an AnsiString. How should I write this?
Ed Dressel