Re: [BUGS] Bug: Inserting

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [BUGS] Bug: Inserting
Дата
Msg-id 8186.945450035@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Bug: Inserting  (kimmol@duniversum.com (Kimmo Lahdensivu))
Ответы Re: [BUGS] Bug: Inserting  (kimmol@duniversum.com (Kimmo Lahdensivu))
Список pgsql-bugs
kimmol@duniversum.com (Kimmo Lahdensivu) writes:
> There was one common thing to all the situations I was unable to insert.
> They were made using postgresql library of php3 (3.0.9). There were no
> error messages or anything but the data just didn't appear in the db.

I think PHP is one of the interfaces that has "autocommit" control (a
seriously misnamed feature IMHO).  What this really means is that your
changes *don't* get committed until you say so, because the interface
library issues a BEGIN WORK behind-your-back.  If you disconnect without
having done the correct incantation to cause a COMMIT, presto: all your
work is rolled back.

I don't know PHP well enough to know the magic incantation, however...

            regards, tom lane

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

Предыдущее
От: Tomas Cerha
Дата:
Сообщение: INET operators and NOT
Следующее
От: kimmol@duniversum.com (Kimmo Lahdensivu)
Дата:
Сообщение: Re: [BUGS] Bug: Inserting