将png / pdf文件存储在sqlite中

时间:2010-03-22 11:37:01

标签: iphone sqlite blob

  

可能重复:
  Reading and writing images to an SQLite DB for iPhone use

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

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

请帮帮我。

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

谢谢你,

2 个答案:

答案 0 :(得分:1)

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

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

答案 1 :(得分:1)

您可以将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 ??)