Re: Query Fails - Mailing list pgsql-general

From Richard Huxton
Subject Re: Query Fails
Date
Msg-id 4869F1B2.3030703@archonet.com
Whole thread Raw
In response to Query Fails  (Sheikh Salman Ahmed <salman_sheikh@hotmail.com>)
List pgsql-general
Sheikh Salman Ahmed wrote:
> Hallo Fellows
>
> I am a new User of postgresql.I have installed it on window XP.I feel it little complicated on Window.I have already
connectedit with visual c++ 2005,but when i wanted to insert some data in my databank,then it fails and shows sytax
erroror  doesn't recognise my table, but connection to data it shows. 
> i am using this code to insert data.
>
> res = PQexec (conn, "INSERT INTO public.Person values (121,'xxx','yyy')");

You probably need to provide the error message for anyone to be sure.

However, at a guess you created your table as "Person" which means it's
case-sensitive. You're now trying to access it without quotes which
means it gets case-folded to "person". Search the list archives for
plenty of discussion.

Summary:
CREATE TABLE FOO
SELECT * FROM foo  -- works
SELECT * FROM Foo  -- works

CREATE TABLE "FOO"
SELECT * FROM foo -- fails
SELECT * FROM FOO -- fails
SELECT * FROM "FOO" -- works

--
   Richard Huxton
   Archonet Ltd

pgsql-general by date:

Previous
From: Jamie Deppeler
Date:
Subject: Need some help
Next
From: Rafael Martinez
Date:
Subject: Problems with a C function, pg_uname(), and String concatenation.