IOS sqlite3 saves the array NSArray

Source: Internet
Author: User

IOS sqlite3 saves the array NSArray

Four Notes: 1. when creating a table, the declared field type is binary blobNSString * INEditorTableName = @ "create table In_Editor (picUrls blob not null)"; 2. insert an SQL statement and convert NSArray to NSData-type NSData * dataImageUrls = [NSKeyedArchiver archivedDataWithRootObject: model. imageUrls]; 3. [NSString stringWithFormat: @ "SQL"]; [_ db executeUpdate: @ "insert into In_Editor (picUrls) values (?); ", DataImageUrls]; 4. read data: NSArray * imageArr = [NSKeyedUnarchiver unarchiveObjectWithData: picUrls] // if you do not pay attention to the preceding items, the following error may occur: * Terminating app due to uncaught exception 'failed', reason: '-[_ NSCFData objectForKey:]: unrecognized selector sent to instance 0x6b46c80'

 

 

Note: NSArray and NSData are converted to NSData in binary format: NSData * data = [NSKeyedArchiver archivedDataWithRootObject: Array]; NSData is converted to NSArray: NSArray * array = [NSKeyedUnarchiver unarchiveObjectWithData: data]; Integer: value is signedinteger type, size can be 1, 2, 4, 6, 8 bytesREAL: floating point type TEXT: To UTF-8, character Type BLOB stored in UTF-16BEorUTF-16LE encoding: binary data
 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.