Created
October 27, 2018 07:23
-
-
Save Manuri/6907a1f975ad6b53ca8105a336e76d70 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
table dt = check testDB->select("SELECT FirstName from Customers where registrationID = 1", ResultCustomers); | |
while (dt.hasNext()) { | |
ResultCustomers rs = check <ResultCustomers>dt.getNext(); | |
return rs.FIRSTNAME; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment