Hi,
I'm using Symfony + Oracle and I'm having problems with case sensitive
table/field names. For example, the generated SQL is:
CREATE TABLE "state"
(
"id" NUMBER NOT NULL,
"name" VARCHAR2(50),
);
But every query (built with Peer classes) using Propel fails, such as:
SELECT id FROM state
But these queries work (manually tested):
SELECT "id" FROM "state"
SELECT "ID" FROM "STATE"
SELECT ID FROM STATE
Is there any way to solve this problem?
Thanks!
--
Jony dos Santos Kostetzer
| Linux user #392481
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---