Re: Does postgresql-odbc work on 64-bit platforms?

From: Ludek Finstrle <luf(at)pzkagis(dot)cz>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-odbc(at)postgresql(dot)org
Subject: Re: Does postgresql-odbc work on 64-bit platforms?
Date: 2005-12-16 13:27:55
Message-ID: 20051216132755.GC20814@soptik.pzkagis.cz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

> >> I just had occasion to build 08.01.0102 on an x86_64 machine, and I
> >> noted quite a large number of warnings about "cast from pointer to
> >> integer of different size" and vice versa. These are pretty scary.
>
> > If you can help (or can find some Redhat manpower) that would be
> > appreciated - I certainly don't have a 64 bit box right now and am

This is same problem for me. I have no 64 bit box right now :-(
Maybe I'll have access to linux box after Xmas (if I enforce dual
boot on new notebook).

> I've attached a list of the current warnings (current as of 08.01.0102
> sources).
>
> The two warnings in PGAPI_SetConnectOption definitely look like crash
> cases to me. The others might be fixable by changing, eg,
> if ((SQLUINTEGER) Value == SQL_OV_ODBC2)
> to
> if (Value == (PTR) SQL_OV_ODBC2)

Thanks, this and the list help me a lot

Luf

In response to

Browse pgsql-odbc by date

  From Date Subject
Next Message Ludek Finstrle 2005-12-16 13:37:43 Re: Access violation C5 error on Visual FoxPro SQLEXEC() call after error
Previous Message Ludek Finstrle 2005-12-16 13:15:25 Re: Next development steps?