Map a Java ResultSet to an Object.
Plug it into many frameworks to automatically map ResultSets (eg DBUtils, Spring Framework,...).
License
BSD LicenseFollow ResultSetMapper
Other Useful Business Software
Auth for GenAI | Auth0
Easily implement secure login experiences for AI Agents - from interactive chatbots to background workers with Auth0. Auth for GenAI is now available in Developer Preview
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'.