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
Enterprise-grade ITSM, for every business
Freshservice is an intuitive, AI-powered platform that helps IT, operations, and business teams deliver exceptional service without the usual complexity. Automate repetitive tasks, resolve issues faster, and provide seamless support across the organization. From managing incidents and assets to driving smarter decisions, Freshservice makes it easy to stay efficient and scale with confidence.
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'.