Subject | Re: [ib-support] accessing columns in Views |
---|---|
Author | Claudio Valderrama C. |
Post date | 2001-07-09T03:40:29Z |
""Surojit Niyogi"" <saniyogi@...> wrote in message
news:<000c01c1071f$66d350f0$5bcb27d8@efabtech>...
any other column though. I also tried UPHONE thinking it was case sensitive
but that didn't work either.
Please RTFM. Your column is defined as
"uPhone", right?
Then you need
SELECT "uPhone" FROM SUSERCOMPANY;
If this doesn't work, then it's a bug. Otherwise it's misuse. Fields not
enclosed in double quotes are uppercased.
C.
news:<000c01c1071f$66d350f0$5bcb27d8@efabtech>...
>FROM SUSERCOMPANY;", it throws an error -206 (column unknown) It works with
> CREATE VIEW "SUSERCOMPANY" (
> "TITLE",
> "uPhone", <===========>
> "uFax",
>
> If I try to access the uPhone column with the statement "SELECT uPhone
any other column though. I also tried UPHONE thinking it was case sensitive
but that didn't work either.
Please RTFM. Your column is defined as
"uPhone", right?
Then you need
SELECT "uPhone" FROM SUSERCOMPANY;
If this doesn't work, then it's a bug. Otherwise it's misuse. Fields not
enclosed in double quotes are uppercased.
C.