From: Lennart P. <le...@us...> - 2005-03-01 14:27:21
|
Update of /cvsroot/redpos/RedPOS/src/org/redpos/client/contract/db In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2425/src/org/redpos/client/contract/db Modified Files: RedPOSTable.java Log Message: Dispose of TableItems in FindProductUI, FindReceiptUI and POSSaleInfo Index: RedPOSTable.java =================================================================== RCS file: /cvsroot/redpos/RedPOS/src/org/redpos/client/contract/db/RedPOSTable.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RedPOSTable.java 19 Feb 2005 08:17:30 -0000 1.3 --- RedPOSTable.java 1 Mar 2005 14:26:53 -0000 1.4 *************** *** 122,127 **** /** ! * Performs a SELECT statement in database table. String searches ! * are case-insensitive with the use of the 'UPPER' db-command. * * @param where --- 122,126 ---- /** ! * Performs a SELECT statement in database table. * * @param where *************** *** 204,208 **** if(values[i] instanceof String) { ! String string = ((String)values[i]).toUpperCase(); if(like) string = string + WILDCARD; --- 203,208 ---- if(values[i] instanceof String) { ! //String string = ((String)values[i]).toUpperCase(); ! String string = (String)values[i]; if(like) string = string + WILDCARD; |