WsResultSet rs = new WsResultSet(wsRows.toArray(new WsResultSetRow[wsRows.size()]));
return new WsDbExecuteResult(createForSuccess(), rs, result.getUpdateCount());
}
private static JdbcSessionCredentials toCredentials(WsJdbcSessionId ws) {
return new JdbcSessionCredentials(
new JdbcSessionId(ws.getSessionGuid()),
ws.getJitterbitUser(),
ws.getMd5Pwd());
}