Subject Re: TIBO Database ISAPI
Author info@mm-mietmoebel.de
Dear Jason,


I try to establish 3 TIBODatabse Connections, than I create a couple
of queries:

AktQuery := TIBOQuery.Create(nil);
AktQuery.DatabaseName := 'TICKETS';
AktQuery.SQL.Text := 'select * from Events '+w;
AktQuery.Open;

etc.

what i although wonder ist, that the performance is very slow
compared with the bde components.

Do you know any good examples devloping ISAPI dlls using IBobjects ?

Regards ,
carsten

--- In IBObjects@y..., "Jason Wharton" <jwharton@i...> wrote:
> I think we need to know more about what is going on in your modules.
> Yes, you should have an IB_Session component on your module. Make
sure it is
> first in the creation order too.
>
> Jason Wharton
> CPS - Mesa AZ
> http://www.ibobjects.com
>
>
> ----- Original Message -----
> From: <info@m...>
> To: <IBObjects@y...>
> Sent: Tuesday, April 17, 2001 8:56 AM
> Subject: [IBO] TIBO Database ISAPI
>
>
> > I have problems in ISAPI Dlls,
> >
> > I replaced all BDE connection with TIBODatabase objects,
> > works almost fine when DLLs are not cached.
> >
> > When the Dlls are cached i get 500 Server Error.
> >
> > Do I have to use a Session or Transaktion object.
> >
> > Regards