Subject | Re: [ib-support] Re: FB and MSSQL (speed test) REPOST |
---|---|
Author | Arno Brinkman |
Post date | 2002-09-13T13:47:25Z |
Hi,
Sounds that IBO let the query prepared and IBX not because you assigned
SQL.Text again.
Regards,
Arno
> > > MSSQL ADO -> ~ 12500 msChanging the SQL to an complete different query ?
> > > FB ADO -> ~ 30500 ms
> > > FB IBX -> ~21500 ms
> > > FB IBO -> ~11400 ms
> > >
> > > The winner is IBO.
> >
> > How did you test ?
> >
> > For all tests creating new instances ?
> >
> > for i := 1 to 10000 do
> > begin
> > with TAQuery.Create(nil) do
> > try
> > SQL.Text := 'SELECT ....';
> > Open;
> > finally
> > Free;
> > end;
> > end;
> >
> > Regards,
> > Arno
>
> I use the same IAQuery. I open and close the query and change the SQL.
Sounds that IBO let the query prepared and IBX not because you assigned
SQL.Text again.
Regards,
Arno