Password authentication in sqlite3 for iphone

Posted by user271753 on Stack Overflow See other posts from Stack Overflow or by user271753
Published on 2010-04-12T12:47:30Z Indexed on 2010/04/12 13:13 UTC
Read the original article Hit count: 297

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

© Stack Overflow or respective owner

Related posts about objective-c

Related posts about iphone-sdk