I have a query that returns only 1 row always.
If I put that returned object into a variable, is there a way to access the results directly? I can get to the data by looping the row but that seems silly.
I want to be able to do something like:
//** Load the table data into a variable
var = Sellers(table)
//** Access the column data from the 0 row
Alert(var[0][‘MircrostorePath’])
This is my test code. I want to eliminate the loop.