Re: Prepared statements with a variable number of parameters

Поиск
Список
Период
Сортировка
От Raymond O'Donnell
Тема Re: Prepared statements with a variable number of parameters
Дата
Msg-id 4AD0FE83.90105@iol.ie
обсуждение исходный текст
Ответ на Re: Prepared statements with a variable number of parameters  (Pavel Stehule <pavel.stehule@gmail.com>)
Список pgsql-general
On 10/10/2009 18:52, Pavel Stehule wrote:

> 2009/10/10 Raymond O'Donnell <rod@iol.ie>:

>> My question is, what do people normally do when there's a variable
>> number of parameters? - for example:
>>
>>  select ..... where item_id in ( ... );
>>
>
> You can use arrays here.
>
> select ... where item_id = ANY(string_to_array($1, ','))

Nice one! Thanks Pavel.

My item_id values are integers, so I added ::integer[] to the above and
all works nicely:

    ...where item_id = any(string_to_array($1, ',')::integer[])

Thanks again,

Ray.


------------------------------------------------------------------
Raymond O'Donnell, Director of Music, Galway Cathedral, Ireland
rod@iol.ie
Galway Cathedral Recitals: http://www.galwaycathedral.org/recitals
------------------------------------------------------------------

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

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: How to send multiple SQL commands from Python?
Следующее
От: Nick
Дата:
Сообщение: What's wrong with this regexp?