Re: How to parse data type array columns?

From: Greg Stark <gsstark(at)mit(dot)edu>
To: Janning Vygen <vygen(at)gmx(dot)de>
Cc: pgsql-php(at)postgresql(dot)org
Subject: Re: How to parse data type array columns?
Date: 2005-08-16 15:04:20
Message-ID: 871x4tx6rv.fsf@stark.xeocode.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php


Janning Vygen <vygen(at)gmx(dot)de> writes:

> Hi,
>
> if you use array data type in your database design and query your tables with
> PHP you get a string which represents the array. It can look something like
> this:
>
> [1:2]{{"Hallo", "Te\"st},"},{"Hallo", "Test"}}

Do you still get that if you use the binary format? I would expect it to be
easier to parse the binary format than this format which is really intended
for humans and dump files.

I think the right place to deal with this is down in the driver where it has
all the information about the types and can request the format it wants from
the database.

--
greg

In response to

Responses

Browse pgsql-php by date

  From Date Subject
Next Message Janning Vygen 2005-08-16 18:25:16 Re: How to parse data type array columns?
Previous Message Christopher Kings-Lynne 2005-08-16 08:42:53 Re: How to parse data type array columns?