Re: BUG #4322: Problems with field not updatable

From: Craig Ringer <craig(at)postnewspapers(dot)com(dot)au>
To: Alexandre Caneo <alexandre(at)adtinformatica(dot)com(dot)br>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #4322: Problems with field not updatable
Date: 2008-07-24 02:14:57
Message-ID: 4887E5A1.7060308@postnewspapers.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Alexandre Caneo wrote:

> When I select the datas with this instruction
> "select a.x from a,b where a.z = b.z order by 1"
> the program run very well and I can insert, update and delete rows. But,
> when I select any column from table b an error occurs when I try to modify
> the column value from textbox for an example.
> "Binding Collection Error. field not updatable".

Maybe you should try your query from psql, and see if it works fine
there. If it does, then you know the problem is in your data access
driver or application.

At a guess, I'd say you'll be having issues with data type support in
the data access driver. You are using a prehistoric programming
language, which won't be helping.

You should post your query (if it's generated by your app at runtime,
get it by enabling query logging in the database and fishing it out of
the PostgreSQL log) and the schema definition of the problem table as
obtained with psql's \d command.

--
Craig Ringer

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message César Miguel Oliveira Alves 2008-07-24 10:53:55 Re: LDAP Authentication with spaces in DN
Previous Message Alexandre Caneo 2008-07-23 20:16:26 BUG #4322: Problems with field not updatable