Re: Fetch an element in an array

From: "omid omoomi" <oomoomi(at)hotmail(dot)com>
To: bernie(dot)huang(at)ec(dot)gc(dot)ca, pgsql-sql(at)postgresql(dot)org
Subject: Re: Fetch an element in an array
Date: 2000-06-08 01:05:23
Message-ID: 20000608080524.19140.qmail@hotmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

$row = pg_fetch_array($exec, 1);
echo $row['col2'];

Regards
Omid Omoomi

>From: Bernie Huang <bernie(dot)huang(at)ec(dot)gc(dot)ca>
>To: PGSQL-SQL <pgsql-sql(at)postgresql(dot)org>
>Subject: [SQL] Fetch an element in an array
>Date: Wed, 07 Jun 2000 17:21:52 -0700
>
>Hi,
>
>This is more of a PHP problem, but I wish if someone knows this can help
>me. How do I fetch an element in a Postgres array?
>
>I have a table like
>
>employee
>--------
>col1 int4
>col2 text[]
>
>now I used the php api
>
>$row = pg_fetch_array($exec, 0);
>
>which gives me the following:
>
>echo $row['col2'];
>(prints out ===> {"123-4567", "Bernie", "123-5670"} )
>
>(echo $row['col2[2]']; <=== didn't work)
>
>What can I do to extract only the "Bernie" element?
>
>Thanks.
>
>
>- Bernie
><< bernie.huang.vcf >>

________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

Browse pgsql-sql by date

  From Date Subject
Next Message Ed Loehr 2000-06-08 02:32:37 Re: how to know when a table is altered
Previous Message Joseph Shraibman 2000-06-08 01:04:10 Re: counting distinct values