Skip to content

Instantly share code, notes, and snippets.

View femoru's full-sized avatar
🎯
Focusing

Felipe Moctezuma femoru

🎯
Focusing
View GitHub Profile
@cworks
cworks / ResultSet to List
Created November 30, 2012 14:07
Java - Convert a ResultSet to a List of Maps, where each Map is a row of data
/**
* Convert the ResultSet to a List of Maps, where each Map represents a row with columnNames and columValues
* @param rs
* @return
* @throws SQLException
*/
private List<Map<String, Object>> resultSetToList(ResultSet rs) throws SQLException {
ResultSetMetaData md = rs.getMetaData();
int columns = md.getColumnCount();
List<Map<String, Object>> rows = new ArrayList<Map<String, Object>>();