Skip to content

Commit

Permalink
SYMMETRICDS-208 - setString
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Mar 27, 2010
1 parent 4806214 commit 92fec8c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -110,7 +110,7 @@ public Object doInPreparedStatement(PreparedStatement ps) throws SQLException, D
ps.setString(1, outgoingBatch.getNodeId());
ps.setString(2, outgoingBatch.getChannelId());
ps.setString(3, outgoingBatch.getStatus().name());
ps.setInt(4, outgoingBatch.isLoadFlag() ? 1 : 0);
ps.setString(4, outgoingBatch.isLoadFlag() ? "1" : "0");
ps.setLong(5, outgoingBatch.getByteCount());
ps.setLong(6, outgoingBatch.getSentCount());
ps.setLong(7, outgoingBatch.getDataEventCount());
Expand Down

0 comments on commit 92fec8c

Please sign in to comment.