将 png/pdf 文件存储在 sqlite 中
Possible Duplicate:
Reading and writing images to an SQLite DB for iPhone use
How to store pdf,png file in sqlite.
is this possible to store pdf and png file?
Please help me out.
if you have any idea please share with me.
Thanks you,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个 BLOB 数据类型,所以我想你可以:
http://www.sqlite.org/datatype3。 html
There is a BLOB data type so I guess you can:
http://www.sqlite.org/datatype3.html
您可以将 PDF 或 PNG 文件存储在 BLOB 字段中。
首先创建表
,然后使用 insert 添加数据。
告诉我们您正在使用什么语言,以获取如何使用绑定变量的建议。
编辑刚刚看到这是标记为iPhone的,语言将是适当的C方言(目标c?)
You can store a PDF or PNG file in a BLOB field.
first create the table
then use insert to add the data.
Tell us what language you are using for advice how to use bind variable.
EDIT just saw this is taged iPhone, the language would be the appropriate C dialect (objective c??)