> -----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