Columns are converted to uppercase

2006-07-19 Thread Robert Kromkamp
Hi All, By default, PostgreSQL folds names to lower case. So to select * from Y there has to be a table named with a lowercase 'y'. If the table name is really a capital 'Y' you need: select * from Y At the moment while creating java files based on a Torque schema, al columns are converted to

AW: Columns are converted to uppercase

2006-07-19 Thread Thoralf Rickert
Hi, there is currently a discussion about that problem on this list and a bug report ( http://issues.apache.org/jira/browse/TORQUE-44). If you need it now, you have to change the Torque templates that generates the column names in the Torque classes (Peer.vm and MapBuilder.vm). There is no

no datasource configured for connection; Torque 3.2 Weblogic 8.1

2006-07-19 Thread garretokelly
I'm trying to use Torque 3.2 and Weblogic 8.1 (SP3) via jndi. My torque.properties file is as follows: # - torque.database.default=behrdevl torque.database.behrdevl.adapter=oracle torque.dsfactory.behrdevl.factory=org.apache.torque.dsfactory.JndiDataSourceFactory

RE: Columns are converted to uppercase

2006-07-19 Thread Greg Monroe
Hmm, according to the PostgreSQL online documentation, identifiers are case insensitive (as specified by SQL standards). See: Section 4.1.1 http://www.postgresql.org/docs/8.1/interactive/sql-syntax.html Is this a bug in the JDBC driver? -Original Message- From: Robert Kromkamp

Re: no datasource configured for connection; Torque 3.2 Weblogic 8.1

2006-07-19 Thread Thomas Fischer
Your stack trace says ... at javax.naming.InitialContext.bind(InitialContext.java:355) at org.apache.torque.dsfactory.JndiDataSourceFactory.bindDStoJndi(JndiDataSourceFactory.java:301) ... There is no bind method called on line 301 of JndiDataSourceFactory.java of the Torque 3.2 release.