Thread: data doesnt get saved in the database / idle in transaction

data doesnt get saved in the database / idle in transaction

From
"Ksenia Marasanova"
Date:
Hi,

I have a  strange problem with my Postgres application. The problem is
that the data entered in the application never reaches the database,
although the record id (serial) is generated, and the record can be
retrieved again, and be modified. Multiple records can be added and
modified. But when i check the data with psql, the record is not
there.
The application uses persistant database connection, and when i check
the status of the connection, it shows: "idle in transaction".  I am
pretty sure that every insert is being committed with explicit
"commit()" . It always worked before.... weird.

thanks for any hints
Ksenia.

Re: data doesnt get saved in the database / idle in transaction

From
"Qingqing Zhou"
Date:
""Ksenia Marasanova"" <ksenia.marasanova@gmail.com> wrote
>
> The application uses persistant database connection, and when i check
> the status of the connection, it shows: "idle in transaction".  I am
> pretty sure that every insert is being committed with explicit
> "commit()" . It always worked before.... weird.
>

Try to use the following command to see what commands reach the server:

    set log_statement = "all";

Regards,
Qingqing



Re: data doesnt get saved in the database / idle in transaction

From
"Jim C. Nasby"
Date:
On Mon, Mar 20, 2006 at 08:03:14PM +0800, Qingqing Zhou wrote:
>
> ""Ksenia Marasanova"" <ksenia.marasanova@gmail.com> wrote
> >
> > The application uses persistant database connection, and when i check
> > the status of the connection, it shows: "idle in transaction".  I am
> > pretty sure that every insert is being committed with explicit
> > "commit()" . It always worked before.... weird.
> >
>
> Try to use the following command to see what commands reach the server:
>
>     set log_statement = "all";

I'd bet that the commits aren't making it over.
--
Jim C. Nasby, Sr. Engineering Consultant      jnasby@pervasive.com
Pervasive Software      http://pervasive.com    work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf       cell: 512-569-9461