-
-
Save LoadLow/12bba876b304e6024894 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!rset.last()) { | |
return new int[0]; | |
} | |
int[] ids = new int[rset.getRow()+1]; | |
rset.beforeFirst(); | |
for (int i = 0; i < ids.length; i++) { | |
rset.next(); | |
ids[i] = rset.getInt(1); | |
} | |
return ids; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment