Re: BUG #16494: cant use row['field name']

From: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
To: preetha(at)tyk(dot)jp, PostgreSQL mailing lists <pgsql-bugs(at)lists(dot)postgresql(dot)org>
Subject: Re: BUG #16494: cant use row['field name']
Date: 2020-06-15 07:11:18
Message-ID: CAFj8pRD90KebOxsPO4YAV0gALEok0qWK5G4f53gHyfhwmHz5Tw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Hi

po 15. 6. 2020 v 8:52 odesílatel PG Bug reporting form <
noreply(at)postgresql(dot)org> napsal:

> The following bug has been logged on the website:
>
> Bug reference: 16494
> Logged by: Preeth TYK
> Email address: preetha(at)tyk(dot)jp
> PostgreSQL version: 12.3
> Operating system: Windows
> Description:
>
> I am using pgsql with php. When trying to echo data in tables using
> row['field name'] , it is returning error. I am currently using
> row['row_number'] which is really inconvenient.
>

If it is an issue, then it is a PHP API issue. This is a PostgreSQL bug
list.

You wrote nothing about the API that you use. Probably it is an older PG
driver. a PDO driver works differently.

But I don't think so this is a bug. Building an int indexed array is faster
than building a string indexed array. This API is pretty old, and had
strong benefits on slower computers.

If you want different access, then you can you different API

https://www.php.net/manual/en/function.pg-fetch-assoc.php
https://www.php.net/manual/en/function.pg-fetch-array.php
https://www.php.net/manual/en/function.pg-fetch-object.php

Regards

Pavel Stehule

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Pavel Stehule 2020-06-15 07:16:50 Re: BUG #16492: DROP VIEW IF EXISTS error
Previous Message PG Bug reporting form 2020-06-15 03:45:58 BUG #16494: cant use row['field name']