Re: Determing Postgres version

From: "Christopher Kings-Lynne" <chriskl(at)familyhealth(dot)com(dot)au>
To: "Gary Hoffman" <ghoffman(at)ucsd(dot)edu>
Cc: <pgsql-php(at)postgresql(dot)org>
Subject: Re: Determing Postgres version
Date: 2001-12-18 01:39:43
Message-ID: GNELIHDDFBOCMGBFGEFOKENGCAAA.chriskl@familyhealth.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

> -----Original Message-----
> From: Gary Hoffman [mailto:ghoffman(at)ucsd(dot)edu]
> Sent: Tuesday, 18 December 2001 12:16 AM
> To: chriskl(at)familyhealth(dot)com(dot)au
> Cc: pgsql-php(at)postgresql(dot)org
> Subject: Re: RE: [PHP] Determing Postgres version
>
>
> Well, I thought of that.
>
> Here's what I get:
> ERROR: function version() does not exist
>
> Any other ideas, short of actually asking the ISP help desk?

Not really - bit before my time!

Another thought - if the old version of postgres doesn't support LIMIT, does
it support CURSORs? If it does, you can simulate LIMIT by going:

BEGIN;
DECLARE mycursor CURSOR
FOR SELECT * FROM table;
FETCH FORWARD limit_no IN mycursor;
CLOSE mycursor;
COMMIT;

Chris

In response to

Browse pgsql-php by date

  From Date Subject
Next Message Marco Colombo 2001-12-18 19:23:02 Re: Function pg_pconnect do not work in FreeBSD
Previous Message Vince Vielhaber 2001-12-17 18:03:27 Re: Determing Postgres version