| From: | Andre Lopes <lopes80andre(at)gmail(dot)com> |
|---|---|
| To: | Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> |
| Cc: | postgresql Forums <pgsql-general(at)postgresql(dot)org> |
| Subject: | Re: PHP array to PlPgSQL arrat. How to? |
| Date: | 2011-03-05 19:38:30 |
| Message-ID: | AANLkTikTOQdiH1oUu7VVWf4f0euc9P73g4=vsFNJzm9a@mail.gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
Hi Pavel,
Thanks for the reply.
In PlpgSQL there is possible to define arrays with "Key => Value, Key => Value"?
Best Regards,
On Sat, Mar 5, 2011 at 7:28 PM, Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> wrote:
> 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(at)gmail(dot)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(at)postgresql(dot)org)
>> To make changes to your subscription:
>> http://www.postgresql.org/mailpref/pgsql-general
>>
>
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Pavel Stehule | 2011-03-05 19:42:54 | Re: PHP array to PlPgSQL arrat. How to? |
| Previous Message | Pavel Stehule | 2011-03-05 19:28:16 | Re: PHP array to PlPgSQL arrat. How to? |