public AddressRow mapRow(ResultSet rs, int rowNum) throws SQLException {
Integer adminLevel = rs.getInt("admin_level");
if(rs.wasNull()) {
adminLevel = null;
}
return new AddressRow(
rs.getLong("place_id"),
DBUtils.getMap(rs, "name"),
rs.getString("class"),
rs.getString("type"),
rs.getInt("rank_address"),