Password authentication in sqlite3 for iphone
- by user271753
Hey Guys .. I am new to programming in Objective C .
I checked many tutorials on reading data in sqlite3 , but almost all of them have show the data in UITableView .
I have a page where the user types in the password, the password lets say 1234 is saved in the database ( I have created a table already ) .
I have got the database into the project folder .
I just want a statement like
if(databasepassword == correct from the uitextfield )
{
show next page
}
else
{
password is incorrect.text
}
I will figure out on how to show the next page and display the password is incorrect.text
I just want a method to cross check with the password saved in the database .
How can I do that ?
Regards