Hi

Sean and I sorted out the toUpperCase() method in the DB class a while ago.  The 
problem was that some databases (Interbase which
I'm using :-) does not support UPPER (column) in and ORDER BY clause.  The solution 
was to add a ignoreCaseInOrderBy() method, which
database connection classes for databases like Interbase could override.

 It seems as if we have missed one spot in BasePeer that came back to haunt me...  Can 
somebody please fix the cvs for me.

~ Leon

RCS file: 
/products/cvs/turbine/turbine/src/java/org/apache/turbine/om/peer/BasePeer.java,v
retrieving revision 1.26
diff -r1.26 BasePeer.java
918c918
<                     orderByClause.add( db.toUpperCase(orderByColumn) );
---
>                     orderByClause.add( db.ignoreCaseInOrderBy (orderByColumn));





------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?:           [EMAIL PROTECTED]

Reply via email to