Re: SQL update function faililed in Webmin Interface

From: "Scott Marlowe" <smarlowe(at)qwest(dot)net>
To: "Kathiravan Velusamy" <kathiravan_velusamy(at)yahoo(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org, pgsql-general(at)postgresql(dot)org
Subject: Re: SQL update function faililed in Webmin Interface
Date: 2004-10-20 07:49:09
Message-ID: 1098258549.21035.39.camel@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-sql

On Wed, 2004-10-20 at 01:03, Kathiravan Velusamy wrote:
> Hello All,
> I am a newbie to PostgreSQL. I am using postgreSQL 7.4.5 in
> HP-Unix 11.11 PA , and 11.23 PA.
> I have a problem with postgreSQL Webmin (Webmin Version
> 1.070) testing in update function.
> This problem exists only when i create a new data base
> through webmin interface,
> and insert some values,and modify those values afterwards.
>
> For E.g :
> I created database called "test" and created table name called
> "one" for that DB,
> which contains filed name "Name" with varchar(10) as a type and
> allows Null values.
> I inserted values for two rows as first and second, it can be
> viewed perfectly.
> But when i select second row (Which contains string "second" as value)
> to edit,
> and change it value as "second1" instead of "second", it throws me
> following error when i saved it :
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> "SQL update "one" set Name = 'Second1' where oid = 25349 failed :
> column "name" of relation "one" does not exist".
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> But when i created the database without using this Webmin interface
> ($ echo "create table one(Name varchar(10))"|psql test ),
> and then edit with webmin interface means it works well and get
> updated.
> Is there any problem with postgreSQL or with Webmin interface ?
> Any idea to solve this issue ?
>

It looks like the table is being defined with the column quoted, like
this:

create table one ("Name" text, moredefshere...)

but accessed without quotes, like above. Whether a database folds to
upper or lower case, the columns need to be accessed consistenly, either
all quoted or never quoted. An application that mixes quoting and not
quoting identifiers is going to have problems.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Arjen van der Meijden 2004-10-20 08:10:02 Re: files ending with .1 or .2
Previous Message Leonardo Francalanci 2004-10-20 07:39:44 files ending with .1 or .2

Browse pgsql-sql by date

  From Date Subject
Next Message Philippe Lang 2004-10-20 12:50:11 Reuse previously calculated column in sql query?
Previous Message Richard Huxton 2004-10-20 07:37:01 Re: [SQL] SQL update function faililed in Webmin Interface