Why do you think you have a problem with case sensitive table/field names? It sounds to me that you might have a problem with your database connection...
On 6 aug, 19:29, Jony dos Santos Kostetzer <[EMAIL PROTECTED]> wrote: > 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 -~----------~----~----~----~------~----~------~--~---
