public static class Store implements RowMapper<CategoryToStore>{
@Override
public CategoryToStore mapRow(ResultSet rs, int rowNum)
throws SQLException {
CategoryToStore catStore = new CategoryToStore();
catStore.setCategoryId(rs.getInt("category_id"));
catStore.setStoreId(rs.getInt("store_id"));
return catStore;
}