如何将数据存储到数据库(sqlite)
在 iOS 上,我想使用 sqlite 将用户数据存储在数据库中。对于该设计,.Xib 文件用户名、密码、出生日期作为文本字段并采用按钮,填写所有文本字段后,单击按钮时所有数据都存储在数据库中。
On iOS, I want store user data in database using sqlite. For that design .Xib file username, password, DOB as text fields and take button, after fill all text fields when click the button all the data is stored in database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您已经知道插座如何工作以及如何从 UI 元素获取信息。
SQLite 部分。 SQLite 非常简单。您需要有一个 INSERT 查询,如下所示:
您应该首先设置数据库,但这一切都可以在文档中找到。
I assume you already know how outlets work and how to get information from UI elements.
SQLite part. SQLite is very easy. You need to have an INSERT query, like this:
You should set up the DB first but this can all be found in the documentation.