This retrieves the information of the current row presented in an associated list. This can only be run after the query has been executed with /database/query/proc/Execute() and started being read with /database/query/proc/NextRow().
= new("database.db")
= new("SELECT * FROM players")
query.Execute()
query.NextRow()
= query.GetRowData()
for( in row)
world.log << "[key]: [row[key]]" // 'username: "Barry"', 'score: 500', 'admin: 0'