Sqlite3,iPhone中的Blob类型
大家好,这是萨比。我从 web 服务获取数据并将该数据保存在 iphone 的 sqlit3 数据库中。我使用视频 url 的数据类型为 blob,但它没有保存在数据库中。但是如果我使用 varchar,则 url 会保存在数据库中。 请帮我解决这个问题,因为我是 iPhone 开发新手。
谢谢大家
Hi everyone this is sabby. I am getting the data from a webservice and saving that data in sqlit3 database in iphone.I used the data type of video url as blob,but its not saving in database.But if i use the varchar then url is saved in database.
Just help me for this ,as i am new to iphone development.
Thanks everyone
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅供参考:不要在 SQLite 中存储大 blob。使用键值对将文件与键进行匹配。这样会更快。
FYI: Dont store BIG blobs in the SQLite. Use a key value pair to match the file to the key. This will be faster.