my MySql solution is here App Inventor Tutorials and Examples: MySQL | Pura Vida Apps
to get the data of a specific user (in the example the user having user id = 7) you can send the following sql statement to the database
SELECT * FROM yourTableName WHERE ID = 7
Taifun