My program is basically a study program for vocabulary. You can insert new vocabs with its def, delete vocabs, search vocabs,a listing funtion to list all the vocab(this is ny problem), and there is even a pop quiz function which randomly picks a vocab to quiz the user. Of course with Kirsle's help I managed to make all the outputs voiced.
now its ok to list all the vocab from the database, if you only have less than 100 so far. But once you get into the 1000s range, it will be ugly and slow. By the way, in my code if you enter '@' it calls for this list.
What i want:
And after @ there should be the vocab that you want to start with, my sql code should be able to select everything in the database AFTER the vocab i entered, and NOT before it. The results must be limited to 50.
I know I could use LIMIT but I'd have to find the row number of the vocab first! And to do that, i'd have to select everything! Is there a way to bypass this?