Re: Improve ODBC Throughput ? - Mailing list pgsql-odbc

From Ludek Finstrle
Subject Re: Improve ODBC Throughput ?
Date
Msg-id 20061020075457.GA24357@soptik.pzkagis.cz
Whole thread Raw
In response to Re: Improve ODBC Throughput ?  (Arnaud Lesauvage <thewild@freesurf.fr>)
Responses Re: Improve ODBC Throughput ?  (Arnaud Lesauvage <thewild@freesurf.fr>)
List pgsql-odbc
> >2.Declare Fetch
> >In Access, you do not have this fine control. Some psqlODBC user have
> >experimented with the DECLARE/FETCH option in the psqlODBC settngs.I am not
> >entirely sure how Declare/Fetch works though, I have never used it.
>
> My tables are linked with these options :
> UseDeclareFetch=1
> UseServerSidePrepare=1
> Fetch=10000

UseDeclareFetch and UseServerSidePrepare are disjoint options.
If I remember it the right way the UseServerSidePrepare disallow
UseDeclareFetch. Please try UseServerSidePrepare=0 when you want
using DeclareFetch.

Why you set Fetch so high? How many rows do you expect?
The UseDeclareFetch declare the select statement as cursor (using
declare statement) and then get the rows using fetch statement
(see postgresql manual).
I see no usage for UseDeclareFetch with so high Fetch.

The UseServerSidePrepare use prepare and execute statement (also
see postgresql manual).

Regards,

Luf

pgsql-odbc by date:

Previous
From: Hiroshi Inoue
Date:
Subject: Re: Improve ODBC Throughput ?
Next
From: Arnaud Lesauvage
Date:
Subject: Re: Improve ODBC Throughput ?