如何将 UITextField 中的文本保存到 SQLite 数据库中?
我看过很多如何从 SQLite 数据库读取数据的教程,但从未见过如何写入其中。 我想将 UITextField 的文本保存到数据库表中的字段中。 你会怎么做?是否可以?请包含任何有帮助的链接。
谢谢。
I have seen many tutorials how to read data from an SQLite db, but never to write to one.
I want to save a UITextField 's text into a field in a database table.
How would you do this? is it possible? please include any links that would help.
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您需要在 iOS 上访问 SQLite 数据库,因此您也可以使用 核心数据。
但除非您有大量数据要存储,否则使用 NSUserDefaults 代替 SQLite 会更快更容易。例子:
Since you need to access an SQLite database on iOS, you can as well learn how to do it using Core Data.
But unless you have a good amount of data to store, it would be faster and easier to use
NSUserDefaults
instead SQLite. Example:GetDatabasePath方法获取数据库路径。
当您想要在数据库中添加文本字段数据并将文本字段数据作为参数传递时,您可以调用此方法。
GetDatabasePath method get the database path.
you call call this method when you want to add the text field data in your database and pass the textfield data as parameter.