Subject Re: [IBO] Undeclared identifier: 'TraceBlobCache'
Author Geoff Worboys
Hi Dion,

I've seen this message go past a few times, but since I did not know
the real answer behind it I let it go for someone that did - seems to
have been missed.

Looks like you are compiling with DEBUG defined in your project
options - presumably for your own use somewhere. The error appears to
be correct, even in the just released 3.6.Ce_Test release. That is;
"TraceBlobCache" does not exist in the underlying dataset. So, until
Jason gets to this, it would appear that you have two choices...

1. Stop using DEBUG in your project options
or
2. Remove or comment out this code (and the corresponding declaration
in the interface section). It does nothing anyway so it will be no
loss.

Hopefully Jason will catch this posting when he returns on Monday (his
time) and make the appropriate adjustments.

Geoff Worboys
Telesis Computing

> When using the IBO Query component, I get the following error(during
> compilation):-
>
> {$IFDEF DEBUG}
> procedure TIBODataset.TraceBlobCache( AStrings: TStrings );
> begin
> InternalDataset.TraceBlobCache( AStrings );
> end;
> {$ENDIF}
>
> [Error] IBDataset.pas(4926):Undeclared identifier: 'TraceBlobCache'
>
> I am using v3.6Cd
>
> Thanks,
> Dion