Re: prepared statements

Поиск
Список
Период
Сортировка
От Scott Frankel
Тема Re: prepared statements
Дата
Msg-id 022BE477-69E6-41FD-9455-C1A7756B19F0@circlesfx.com
обсуждение исходный текст
Ответ на Re: prepared statements  ("Daniel Verite" <daniel@manitou-mail.org>)
Ответы Re: prepared statements  (Alban Hertroys <dalroi@solfertje.student.utwente.nl>)
Список pgsql-general
Works!  The bug in my example was not passing the INSERT statement an
explicit list of column names, as per any non-prepared insert.

Thanks!
Scott


On Jul 23, 2010, at 2:53 PM, Daniel Verite wrote:

>     Scott Frankel wrote:
>
>> I've found that, for a table with a
>> serial sequence key as its first column, I have to specify the key in
>> my prepared statement or I get type errors:  ERROR:  column "foo_id"
>> is of type integer but expression is of type character varying.
>
> Let's try:
>
> test=> create table t(a serial, b int);
> NOTICE:  CREATE TABLE will create implicit sequence "t_a_seq" for
> serial
> column "t.a"
> CREATE TABLE
> test=> prepare a as insert into t(b) values($1);
> PREPARE
> test=> execute a(2);
> INSERT 0 1
> test=> select * from t;
> a | b
> ---+---
> 1 | 2
> (1 row)
>
> No error here...
>
> Best regards,
> --
> Daniel
> PostgreSQL-powered mail user agent and storage: http://www.manitou-mail.org
>
> --
> 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 по дате отправления:

Предыдущее
От: John R Pierce
Дата:
Сообщение: Re: JASPA (JAva SPATial) for PostgreSQL and H2 released
Следующее
От: Craig Ringer
Дата:
Сообщение: Re: Problem with pg_try_advisory_lock and two connections (seemingly) getting the same lock