Map a Java ResultSet to an Object.
Plug it into many frameworks to automatically map ResultSets (eg DBUtils, Spring Framework,...).
License
BSD LicenseFollow ResultSetMapper
You Might Also Like
Our Free Plans just got better! | Auth0 by Okta
You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your secuirty. Auth0 now, thank yourself later.
Rate This Project
Login To Rate This Project
User Reviews
-
This is really cool. I was trying to solve the same thing since long time and this is exactly i was looking for.
-
Very easy to use, but the ReflectionResultSetMapper should use rsmd.getColumnLabel instead of rsmd.getColumnName. Some JDBC drivers return the SQL Alias as the column label and return the actual column name for the column name meta data. If the sql is something like SELECT FOO as NAME from BAR I'd expect the reflection mapper to try to map a column named 'NAME' to an attribute on the bean, not a column named 'FOO'.