Re: row count with libpq driver - Mailing list pgsql-odbc

From Scot Loach
Subject Re: row count with libpq driver
Date
Msg-id 71837C040963F748B9B94E123A289678664F8F@mailserver.sandvine.com
Whole thread Raw
In response to row count with libpq driver  ("Scot Loach" <sloach@sandvine.com>)
List pgsql-odbc
I'm not sure how I'd investigate such an issue.
And I'm also swamped :)
I don't even know what ADO is so I doubt if I'd be much help.

scot.


-----Original Message-----
From: Dave Page [mailto:dpage@vale-housing.co.uk]
Sent: Friday, September 16, 2005 12:06 PM
To: Scot Loach; pgsql-odbc@postgresql.org
Subject: RE: [ODBC] row count with libpq driver


Hi Scot,

Unfortunately I've been seeing some unexplained errors with some
Microsoft ADO based apps since applying this patch, so I've backed it
out for now. Unfortunately, ADO doesn't give any useful error messages.

I'm not entirely sure what's wrong - can you look at it please? I'm
still swamped at the moment :-(

Regards, Dave

> -----Original Message-----
> From: pgsql-odbc-owner@postgresql.org
> [mailto:pgsql-odbc-owner@postgresql.org] On Behalf Of Dave Page
> Sent: 15 September 2005 09:12
> To: Scot Loach; pgsql-odbc@postgresql.org
> Subject: Re: [ODBC] row count with libpq driver
>
>
>
> > -----Original Message-----
> > From: Scot Loach [mailto:sloach@sandvine.com]
> > Sent: 15 September 2005 04:02
> > To: Dave Page; pgsql-odbc@postgresql.org
> > Subject: RE: [ODBC] row count with libpq driver
> >
> > A patch for this is attached, please review.
>
> Thanks Scot - patch applied with a couple of minor fixes -
> specifically
>
> +#ifndef USE_LIBPQ
> +                        if (res->recent_processed_row_count = 0 &&
> res->ntuples > 0)
> +                        {
> +                            *pcrow = res->ntuples;
> +                            return SQL_SUCCESS;
> +                        }
> +#endif
>
> Was changed to
>
> +#ifdef USE_LIBPQ
> +                        if (res->recent_processed_row_count == 0 &&
> res->ntuples > 0)
> +                        {
> +                            *pcrow = res->ntuples;
> +                            return SQL_SUCCESS;
> +                        }
> +#endif
>
> Note the '#ifdef', and '== 0'
>
> Regards, Dave
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 6: explain analyze is your friend
>

pgsql-odbc by date:

Previous
From: "Dave Page"
Date:
Subject: Re: row count with libpq driver
Next
From: "Dave Page"
Date:
Subject: Re: row count with libpq driver