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 connected it with visual c++ 2005,but when i wanted to insert some data in my databank,then it fails and shows sytax error or 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