Finding the pqlib version

From: Christoph Zwerschke <cito(at)online(dot)de>
To: pgsql-interfaces(at)postgresql(dot)org
Subject: Finding the pqlib version
Date: 2006-02-11 10:59:37
Message-ID: 43EDC399.6060203@online.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

I want to add the PQCancel() functionality to PyGreSQL.
Until now, PyGreSQL works with PostgreSQL 7.3+, but
unfortunately, PQCancel() is only available from 8.0+.

In order to not break compilation of PyGreSQL on systems with PG7,
I would like to do something like the following:

#if PQLIB_VERSION_MAJOR < 8
PQRequestCancel(conn)
#else
c = PQgetCancel(conn)
PQCancel(c, errbuf, 256)
PQfreeCancel(c)
#end

However, there is no such thing as "PQLIB_VERSION_MAJOR".
Anything else I could query instead?

-- Christoph

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Greg Sabino Mullane 2006-02-11 12:57:36 Re: Finding the pqlib version
Previous Message Michael Meskes 2006-02-09 08:14:56 Re: [BUGS] BUG #2171: Differences compiling plpgsql in ecpg and psql