Results container/RowMap
Sorm could convert a row in SQL result to a RowMap object.
The keys of the map are the canonical names of the columns returned from the database. code:Mapping SQL results to java.util.Map example.java
// reads a customer using a custom query and return the result as a map
RowMap customerMap = sorm.readOne(RowMap.class, "select * from customer where id=?", 10); //=> {ID=10, NAME="Alice"}
// reads all customers and result the results as Map instances in a List