"[raw_stream_in] BLOB, " "[num_bytes_in] INTEGER );"; And then later in the code I use the "sqlite3_bind_blob" to send the stream to SQLIte sqlite3_bind_blob( stmt, idx, msg.raw_stream_in, msg.num_bytes_in, SQLITE_STATIC ); For testing purposes I simply read the 15MB fi...
二、sqlite的增删改查操作 我们把sqlite的使用方法写在一个文件DataBaseHelper类里,使用的时候导入调用即可 //首先写一个DataBaseHelper类的单例方法,保证同时间只有一个对象访问数据库+(DataBaseHelper*)sharedDataBaseHelper{staticDataBaseHelper*dataBaseHelper=nil;@synchronized(self){if(dataBaseHelper==nil){dat...