You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When fetching a row such as row = results.next() it returns an Element, and getting the fields using row[0] etc. This makes ugly code. In other languages I can do something like row["columnName"] to get the data I'm looking for.
The text was updated successfully, but these errors were encountered:
When fetching a row such as
row = results.next()
it returns an Element, and getting the fields usingrow[0]
etc. This makes ugly code. In other languages I can do something likerow["columnName"]
to get the data I'm looking for.The text was updated successfully, but these errors were encountered: