Alain Picard <Alain.Picard@memetrics.com> writes:
> b) how to get 7.3 to return numbers via ODBC
I dunno anything about fixing ODBC, but the standard advice for avoiding
client-side problems with int8 is to cast the result of count(*) back to
int4:
select count(*)::integer from ...
regards, tom lane