Subject Re: [IBO] Cached Updates Problem with DML
Author Jason Wharton
Not sure what more to say here.
Anything else you can share about the problem?

Jason Wharton
CPS - Mesa AZ
http://www.ibobjects.com

-- We may not have it all together --
-- But together we have it all --


"Marcel Brink" <mbrink@...> wrote in message
news:b1a8pk$png$1@......
> Hi,
>
> I already resynch the Dataset when i receive a DMLCacheItem, do that
> shouldn't be the problem.
>
> procedure TdmDBConnection.DoDMLReceivedItem(ADataset: TIB_Dataset;
> const ADMLCacheItem: TIB_DMLCacheItem);
> var ds: TIBODataset;
> begin
> // Call Default handler
> ADataset.DefaultDMLCacheReceivedItem(ADMLCacheItem);
>
> // Synch the IBODataset
> ds := GetDataSetByInternal(ADataset);
> if Assigned(ds) then
> ds.Resync([]);
> end;
>
> Marcel Brink.
> Xploration.
>
> ""Jason Wharton"" <jwharton@...> wrote in message
> news:b19ebf$e5d$1@......
> > > I have a major problem using Cached updates on TIBOQueries with
> > > DMLFlags set through the InternalDataset.
> >
> > This isn't supported.
> > You need to refresh the query or invalidate the records at the very
least.
> >
> > Thanks,
> > Jason Wharton
> > CPS - Mesa AZ
> > http://www.ibobjects.com
> >
> > -- We may not have it all together --
> > -- But together we have it all --