Issue Details (XML | Word | Printable)

Key: DBUTILS-34
Type: Improvement Improvement
Status: Closed Closed
Resolution: Fixed
Priority: Minor Minor
Assignee: Dan Fabulich
Reporter: Fabio Insaccanebbia
Votes: 0
Watchers: 2
Operations

If you were logged in you would be able to see more operations.
Commons DbUtils

BasicRowProcessor loses any information on database field case

Created: 01/Dec/06 08:54 PM   Updated: 07/Mar/09 06:09 AM
Return to search
Component/s: None
Affects Version/s: 1.0
Fix Version/s: 1.2

Time Tracking:
Not Specified

File Attachments:
  Size
Java Source File Licensed for inclusion in ASF works BasicRowProcessor.java 2007-05-11 03:41 PM Julien Aymé 8 kB
Text File Licensed for inclusion in ASF works BasicRowProcessor.patch 2007-05-11 03:41 PM Julien Aymé 4 kB

Resolution Date: 25/Feb/09 10:06 AM


 Description  « Hide
In the BasicRowProcessor class there is a comment about the toMap method:
" This implementation returns a <code>Map</code> with case insensitive column names as keys. Calls to map.get("COL") and map.get("col") return the same value"

So the "contract" of this method just says that the "get" method is case insensitive. The current implementation obtains this result by putting all the keys in lowercase. This way we simply "lose" every information about the case of the fields. If you call the "keys" iterator, you don't have anymore the keys you inserted, but the "lowercase" version.

I find it not completely correct: I would expect the keys to be exactly the ones I set on the database, also if I can get the value in a case insensitive way.
I still have to find the idea for a pathc, but I'd like to know if you find my reasoning correct.

I consider the current behaviour a problem, since I had to map the database fields to a bean and the "case" made it impossible, even if I had set my database to return mixed case fieldnames.



 All   Comments   Work Log   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
Julien Aymé added a comment - 11/May/07 03:41 PM
Hello, I had the same problem as yours, and I fixed it with an implementation of my own of the CaseInsensitiveHashMap:

Instead of converting the key to lower case before putting it into the map, I chose to keep the key as it was given, and maintain an internal mapping from lower case keys to real keys.

I join the whole BasicRowProcessor class, and the patch. (Some of the comments can be removed, it's just for the clarity of the code).


Dan Fabulich added a comment - 09/Feb/09 08:50 PM
Julien's patch keeps an internal map of given keys to keys in lower case. So you call put("Foo", value), and the lowerCaseMap maps "foo" to "Foo", and then the "real" HashMap stores ("Foo", value).

I'm concerned about this patch, because every change has to happen in two phases: first you update lowerCaseMap, and THEN you update the real map; I strongly suspect that it's not thread-safe as a result. (I think the two maps can get out of sync, resulting in corruption.)

More generally, I don't understand the point of this bug. Why do you need to retrieve the keys yourself? Fabio originally wrote "I had to map the database fields to a bean and the 'case' made it impossible" ... but we already have a system for mapping database fields to bean properties. It works fine (right?); it's clearly not "impossible."


Dan Fabulich added a comment - 11/Feb/09 08:10 AM
Liam helped me understand the point of this on the commons-dev list. Checked into "bugfixing" branch in revision 743269.

CaseInsensitiveHashMap ISN'T thread-safe, but then, neither is HashMap! So, uh, never mind.


Julien Aymé added a comment - 11/Feb/09 08:42 AM
Hello, thanks for applying the patch!

I'd like to add some minor modifications:
We should consider making the field lowerCaseMap final (I think that this is a Good Practice TM);

and for the putAll method, I should have used the entrySet instead of the keySet:

public void putAll(Map m) {
	    Iterator iter = m.entrySet().iterator();
	    while (iter.hasNext()) {
	    	Map.Entry entry = (Map.Entry) iter.next();
	        Object key = entry.getKey();
	        Object value = entry.getValue();
	        this.put(key, value);
	    }
	}

Dan Fabulich added a comment - 11/Feb/09 10:41 PM
Done in bugfixing branch revision 743292.

Henri Yandell added a comment - 25/Feb/09 10:06 AM
svn ci -m "Merging in Dab Fabulich's work on https://svn.apache.org/repos/asf/commons/sandbox/dbutils/bugfixing from -r741987:747723. Resolving DBUTILS-34 - DBUTILS-37 - DBUTILS-29 - DBUTILS-14 - DBUTILS-31 - DBUTILS-39 - DBUTILS-41 - DBUTILS-44 - DBUTILS-33 - DBUTILS-42 - DBUTILS-40"

Sending pom.xml
Sending src/java/org/apache/commons/dbutils/BasicRowProcessor.java
Sending src/java/org/apache/commons/dbutils/BeanProcessor.java
Sending src/java/org/apache/commons/dbutils/QueryRunner.java
Adding src/java/org/apache/commons/dbutils/handlers/AbstractListHandler.java
Sending src/java/org/apache/commons/dbutils/handlers/ArrayListHandler.java
Sending src/java/org/apache/commons/dbutils/handlers/BeanListHandler.java
Sending src/java/org/apache/commons/dbutils/handlers/ColumnListHandler.java
Deleting src/java/org/apache/commons/dbutils/handlers/GenericListHandler.java
Sending src/java/org/apache/commons/dbutils/handlers/MapListHandler.java
Sending src/test/org/apache/commons/dbutils/BaseTestCase.java
Adding src/test/org/apache/commons/dbutils/QueryRunnerTest.java
Transmitting file data .........
Committed revision 747724.