Skip to content

Instantly share code, notes, and snippets.

@Manuri
Last active October 27, 2018 08:10
Show Gist options
  • Save Manuri/05415679caceada553ea1188c541cb82 to your computer and use it in GitHub Desktop.
Save Manuri/05415679caceada553ea1188c541cb82 to your computer and use it in GitHub Desktop.
table dt = check testDB->select("SELECT FirstName from Customers where registrationID = 1", ResultCustomers);
while (dt.hasNext()) {
ResultCustomers rs = check <ResultCustomers>dt.getNext();
if (rs.ID > 10) {
break;
} else {
id = rs.ID;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment