Antonio Gallardo wrote:
Hi. I am review the code of the ESQL and a have a little change to the code:That's just the fallback method (that should never be used). If you look into the JDBC query you'll find what you proposed :)
In the source file AbstractEsqlQuery.java the original at line 207:
public void getResultRows() throws SQLException {
if (skipRows > 0) {
while (resultSet.next()) {
position++;
if (position >= skipRows) {
break;
}
}
}
}
cheers
--
Torsten
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]