Subject Re: invalidate active record in a master/detail relationship
Author
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