Returns:
/list: The data stored in the current row, with the key being the column name and the value being the row value

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().

var/database/db = new("database.db")
var/database/query/query = new("SELECT * FROM players")
query.Execute()
query.NextRow()

var/row = query.GetRowData()
for(var/key in row)
    world.log << "[key]: [row[key]]" // 'username: "Barry"', 'score: 500', 'admin: 0'