| From: | Jeff Silberberg <jms(at)dapage(dot)net> |
|---|---|
| To: | Michael Wallner <mike(at)php(dot)net> |
| Cc: | pgsql-php(at)postgresql(dot)org |
| Subject: | Re: Looking for some assistance / guidance -- |
| Date: | 2014-07-29 13:09:23 |
| Message-ID: | CALWasQm2i3isreNgi=+fnt2c0CtueeLirCMyCp+A3EEeGOFf0w@mail.gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-php |
Michael,
About three am I woke up with this same basic thought in my head..
Will try it latter this morning, but I suspect this is the correct
answer.
Thank you !
On Tue, Jul 29, 2014 at 5:02 AM, Michael Wallner <mike(at)php(dot)net> wrote:
> On 29/07/14 02:45, Jeff Silberberg wrote:
>
> > echo "User Keys " . gettype($userKey)."<br>\n"; confirms this is
> > a Array .. An I have tried casting $1::int[] in the prepare with no
> > luck..
> >
>
> You have to format it as postgresql array string, so that it can be
> parsed as array by the server, e.g: '{1,2,3}'::int[]
>
> So, assuming they keys are integers:
> $userKey = "{".implode(",",array_map("intval", $userKey))."}::int[]";
>
> --
> Regards,
> Mike
>
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Michael Wallner | 2014-10-21 12:11:05 | New PHP binding: pecl/pq |
| Previous Message | Michael Wallner | 2014-07-29 09:02:33 | Re: Looking for some assistance / guidance -- |