Subject Re: TIB_Query vs. TIBOQuery???
Author Stan
>
> I do it programatically. Before connecting the TIBODatase component I have:
>
> MyDb.SchemaCacheDir := ExtractFilePath(Application.exename) + 'schema';
>
>
> For ReportBuilder I use: TIBOQuery > TDataSource > TppDbPipeline > TppReport. Not the native query component, but it works fine for me.
>
> Stan
>
>
>
> MyDb.Connected := True;
>

That code should be (and it creates a "schema" directory where your app is located):

(before db is connected)

MyDb.SchemaCacheDir := ExtractFilePath(Application.exename) + 'schema';

MyDb.Connected := True;