Skip to content

Commit

Permalink
changed resultSet
Browse files Browse the repository at this point in the history
  • Loading branch information
smirnovaae committed Apr 4, 2024
1 parent fea0adc commit 870ee93
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void copyDataToFile(Connection connection) {
writer.newLine();
long records = 0;
while (rs.next()) {
var line = getResponseLine(rs.getString(1), rs.getDate(2), rs.getBoolean(3));
var line = getResponseLine(rs.getString("mbi"), rs.getDate("effective_date"), rs.getBoolean("opt_out_flag"));
writer.write(line);
writer.newLine();
records++;
Expand Down

0 comments on commit 870ee93

Please sign in to comment.