re: Is there a way using Ibator to do a case-insensitive LIKE compare

2008-08-01 Thread Robert Glover
From:Robert Glover [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2008 5:10 PM To: user-java@ibatis.apache.org Subject: Is there a way using Ibator to do a case-insensitive LIKE compare Disclaimer: I really, really like Ibator and use it in all my projects. A programmer has inherited

Re: Is there a way using Ibator to do a case-insensitive LIKE compare

2008-07-31 Thread Jeff Butler
Take a look in the ibator documentation here: http://svn.apache.org/repos/asf/ibatis/trunk/java/tools/ibator/core/htmldoc/generatedobjects/extendingExampleClass.html I describe exactly how to extend the generated example classes to add this functionality. Jeff Butler On Thu, Jul 31, 2008 at 5:0

RE: Is there a way using Ibator to do a case-insensitive LIKE compare

2008-07-31 Thread Chris O'Connell
What about a query with something like Select * from table where upper(NAME_COLUMN) like '%input_variable%' From: Robert Glover [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2008 5:10 PM To: user-java@ibatis.apache.org Subject: Is there a way using Ibator to do a case-insensitive L