Hi I am in need of some desperate help,
What I have is a Sqlite database set up like this
ID Question AnswerA AnswerB AnswerC AnswerD
1
2
3
and what I want to do is pull from a random row 1,2 or 3 and display it on
my UIView which has 5 UITextFields one for the question and 4 for the 4 Answers. I've gone through a ton of tutorials on how to bring in a Sqlite database and display it on a UITableView using a Navigation-based Application, but that's not what I'm looking for. I want to use a View-based Application and display the questions and answers on my UIView. Please don't reply if you don't have a full answer, I don't mean to be ungreatful but I've had problems in the past with incomplete answer's.
An Example SQLite based iPhone Application - Techotopia
This is one of the many tutorials I've gone through about sqlite in the Iphone. The only problem with this one is that he isn't pulling data out of a existing database he built with Sqlite. He's having the user enter data on the Iphone which is saving it to a database and then pulling it back out.