I have a select statement that queries the top 5 players who got high scores
selectStmt = new SQLStatement();
selectStmt.sqlConnection = conn;
selectStmt.text="SELECT name, level, score FROM highscores WHERE ROWID <=5 ORDER BY score DESC";
selectStmt.execute();
I want the name, level, and score displayed in labels. How can I pass the results in labels?