For example I have the following MySql table:
A B C
1 aaa 2017
1 bbb 2018
2 ccc 2016
2 ddd 2015
I want to put all rows into a multimap structure, using column A as key (the key is not unique, so why multimap). I searched and it seems org.apache.commons.dbutils ResultSetHandler
only has BeanMapHandler (but not something like BeanMultiMapHandler).
Is there anyway to put rows into a multimap using column A as key? Thanks.