将 png/pdf 文件存储在 sqlite 中

发布于 2024-08-26 14:15:34 字数 321 浏览 7 评论 0原文

可能的重复:
在 iPhone 版 SQLite 数据库中读取和写入图像使用

如何在sqlite中存储pdf、png文件。

这可以存储pdf和png文件吗?

请帮帮我。

如果您有任何想法请与我分享。

感谢您,

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

安静 2024-09-02 14:15:34

有一个 BLOB 数据类型,所以我想你可以:

http://www.sqlite.org/datatype3。 html

There is a BLOB data type so I guess you can:

http://www.sqlite.org/datatype3.html

幸福丶如此 2024-09-02 14:15:34

您可以将 PDF 或 PNG 文件存储在 BLOB 字段中。

首先创建表

create table Blubber ( PK int primary key , BITSINK blob );

,然后使用 insert 添加数据。

insert into Blubber (PK,BITSINK) 
values (1, 'your blob goes here, best to use bind variables though!');

告诉我们您正在使用什么语言,以获取如何使用绑定变量的建议。

编辑刚刚看到这是标记为iPhone的,语言将是适当的C方言(目标c?)

You can store a PDF or PNG file in a BLOB field.

first create the table

create table Blubber ( PK int primary key , BITSINK blob );

then use insert to add the data.

insert into Blubber (PK,BITSINK) 
values (1, 'your blob goes here, best to use bind variables though!');

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??)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文