Hi, I've got two mysql tables representing a student db, one table student info with student id, picture and year, another table student_detail with student id, address, SSN, etc.
When I first load the application I read in a student_info xml file and show the students in a TileList component. I then want to read in the student_detail xml file in the background and then when I click on the student Id, quickly retrieve and show the student_detail. Is there a way to index the student_detail by student_id, or what's the best way to retrieve student_detail when I know the student_id? thanks,

