comment.setReplyTo(new Integer(rs.getInt("ReplyTo")));
if (rs.wasNull()) comment.setReplyTo(null);
comment.setEntry(rs.getInt("Entry"));
comment.setSubject(rs.getString("Subject"));
User user = new User();
user.setEmail(rs.getString("Email"));
user.setPassword(rs.getString("Password"));
user.setType(rs.getInt("Type"));
user.setUserId(rs.getInt("UserId"));
user.setUsername(rs.getString("Username"));
comment.setPostedBy(user);
return comment;
}