Subject | Re: [firebird-support] Re: FireBird TCP/IP Connection very Slow ! |
---|---|
Author | Aage Johansen |
Post date | 2005-06-07T19:23:06Z |
Haci Yigit wrote:
the time to transfer the records. I don't use IBX, but with IBO it is
something like (after connect and setting up the query):
// Time 0
Q1.prepare;
// Time 1
Q1.First;
// Time 2
while not Q1.Eof do
Q1.Next;
// Time 3
Q1.Close;
// Time 4
Which part(s) is slow/slowest?
--
Aage J.
> I use IBQuery in the project. An i select only necessary fields not=20Check how long a prepare takes, and then check the select, and then check
> all. Such as "Select name, surname, grup from...." and in this table=20
> record # is 12. Table size is very small.
>
> FireBird version 1.5
the time to transfer the records. I don't use IBX, but with IBO it is
something like (after connect and setting up the query):
// Time 0
Q1.prepare;
// Time 1
Q1.First;
// Time 2
while not Q1.Eof do
Q1.Next;
// Time 3
Q1.Close;
// Time 4
Which part(s) is slow/slowest?
--
Aage J.