Re: PHP array to PlPgSQL arrat. How to?

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема Re: PHP array to PlPgSQL arrat. How to?
Дата
Msg-id AANLkTi=x=XQVNeTW1TCUACLVUvLN7RT0PqzGFTU5sYqW@mail.gmail.com
обсуждение исходный текст
Ответ на PHP array to PlPgSQL arrat. How to?  (Andre Lopes <lopes80andre@gmail.com>)
Ответы Re: PHP array to PlPgSQL arrat. How to?  (Andre Lopes <lopes80andre@gmail.com>)
Список pgsql-general
Hello

there isn't a simple way :(

the most simply way is using string_to_array function

SELECT func(string_to_array('1,2,3,4,5',','));

Regards

Pavel Stehule


2011/3/5 Andre Lopes <lopes80andre@gmail.com>:
> Hi,
>
> I need to transform an PHP array to an PlPgSQL array. The PHP array is
> like this:
>
> [quote]
> $arr = array(
>                                0 => array(
>                                                        "base64" => "ddfffffff",
>                                                        "image_type" => "jpg",
>                                                        "width" => "343",
>                                                        "height" => "515",
>                                                        "html_width_height" => 'width="343" height="515"',
>                                                        "mime" => "image/jpeg"
>                                                        ),
>                                1 => array(
>                                                        "base64" => "ddfffffffddddd",
>                                                        "image_type" => "jpg",
>                                                        "width" => "343",
>                                                        "height" => "515",
>                                                        "html_width_height" => 'width="343" height="515"',
>                                                        "mime" => "image/jpeg"
>                                                        )
>                        );
> [/quote]
>
> How can I pass this kinf of PHP array to PlPgSQL?
>
> Give me a clue.
>
> Best Regards,
>
> --
> Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general
>

В списке pgsql-general по дате отправления:

Предыдущее
От: Andre Lopes
Дата:
Сообщение: PHP array to PlPgSQL arrat. How to?
Следующее
От: Andre Lopes
Дата:
Сообщение: Re: PHP array to PlPgSQL arrat. How to?