Import the externally prepared SQLite into the project

Source: Internet
Author: User
Tags sqlite database

First, place the SQLite database file under the Resource folder and allow it to be compiled into the project.

Then execute some code in the Appdelegate, where the code encapsulates a helper:

1 #import "RPDBInitializeHelper.h"2 3 @implementationRpdbinitializehelper4 5+ (void) Initializedatabase {6NSString *dbpath = [Nshomedirectory () stringByAppendingPathComponent:@"Documents/db.sqlite"];7     if(![[Nsfilemanager Defaultmanager] Fileexistsatpath:dbpath]) {8NSString *dbresourcepath = [[[NSBundle Mainbundle] ResourcePath] stringByAppendingPathComponent:@"Db.sqlite"];9 [[Nsfilemanager Defaultmanager] Copyitematpath:dbresourcepath topath:dbpath Error:nil];Ten     } One } A  - @end

First, look for the database file under the documents directory of the sandbox and copy the past from the resource file if it does not exist.

Related Article

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.