Skip to content

Instantly share code, notes, and snippets.

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