Re: [BUGS] bug with psql 8.3.3 on ubuntu

2008-10-25 Thread toruvinn
On Thu, 23 Oct 2008 18:46:34 +0200, Viraj Kanwade <[EMAIL PROTECTED]> wrote: psql -d mydb -U usr -t -c " select val1 from ""MyTable"" where val2 = 'abc' " OR psql -d mydb -U usr -t -c ' select val1 from "MyTable" where val2 = ''abc'' ' Both work fine on my windows machine. This is complete

[BUGS] bug with psql 8.3.3 on ubuntu

2008-10-25 Thread Viraj Kanwade
Hi, I have a table which has capital characters in it. I am running the command psql -d mydb -U usr -t -c " select val1 from ""MyTable"" where val2 = 'abc' " OR psql -d mydb -U usr -t -c ' select val1 from "MyTable" where val2 = ''abc'' ' Both work fine on my windows machine. But when I t