sqlite3 for iphone 中的密码验证
大家好..我是 Objective C 编程新手。 我查了很多关于在 sqlite3 中读取数据的教程,但几乎所有教程都在 UITableView 中显示数据。
我有一个页面,用户在其中输入密码,假设密码 1234 保存在数据库中(我已经创建了一个表)。 我已将数据库放入项目文件夹中。 我只是想要一个声明,比如
if(databasepassword == correct from the uitextfield )
{
show next page
}
else
{
password is incorrect.text
}
我将弄清楚如何显示下一页并显示密码不正确。文本 我只想要一种方法来交叉检查数据库中保存的密码。 我怎样才能做到这一点?
问候
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Apple 提供的 sqlite3 API 从数据库读取密码。详细信息:
libsqlite3.dylib
添加到您的框架列表顺便说一句,您打算让用户更新此密码吗?如果您只是硬编码密码并将其与应用程序一起部署,那么使用 SQLite 数据库来存储它就没有多大意义。
Use the sqlite3 API's provided by Apple to read the password from the database. In detail:
libsqlite3.dylib
to your list of frameworksBTW, do you plan to let the user update this password? If you are just hard-coding a password and deploying it along with the app, then there's not much point in using a SQLite database to store it.