Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7995371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T14:23:50+00:00 2026-06-04T14:23:50+00:00

There are probably many other questions I don’t even know to ask yet since

  • 0

There are probably many other questions I don’t even know to ask yet since I’m new to app programming.

I initially created the database from within the app, copied it to my working folder (which is probably not where it should ultimately reside), then appended my records (about 1,000 of them) from a text file.

The first two questions that come to mind are:
– what folder should the database be in?
– how does it get deployed with the app?

I found quite few examples using the following lines in persistentStoreCoordinator function:

NSString *storePath = [[self applicationDocumentsDirectory] stringByAppendingPathComponent: @"myDatabase.sqlite"];
NSURL *storeUrl = [NSURL fileURLWithPath:storePath];

But the first line gives me the pre-compile error: “Receiver type ‘NSURL’ for instance message does not declare a method with selector ‘stringByAppendingPathComponent:’. Why is it not working for me?

And is this in fact the best way to bundle my database with the rest of the app?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T14:23:51+00:00Added an answer on June 4, 2026 at 2:23 pm

    Easiest solution is to use NSUrl instead of NSString. SO user @trapper already provided a solution in the below link.

    importing sqlite to coredata

    NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"Database.sqlite"];
    
    // If the database doesn't exist copy in the default one
    if (![storeURL checkResourceIsReachableAndReturnError:NULL])
    {
        NSURL *defaultStoreURL = [[NSBundle mainBundle] URLForResource:@"Database" withExtension:@"sqlite"];
    
        if ([defaultStoreURL checkResourceIsReachableAndReturnError:NULL])
        {
            NSFileManager *fileManager = [NSFileManager defaultManager];
            [fileManager copyItemAtURL:defaultStoreURL toURL:storeURL error:NULL];
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that probably there is no concept of scope for macros, but please
I'm not too good with SQL and I know there's probably a much more
I'm new to the OOP paradigm, so there's probably a simple explanation for this
First off, I'm aware that there are many questions related to this, but none
I know that there are a quite a few questions on this out there
There is probably already an answer for this somewhere, but I must not be
There is probably a simple answer for this, but I couldn't find one, so
There is probably something dumb I am doing wrong here. public function get_scores($id) {
There's probably a silly error in my code. I have defined the following variables:
First of all there is probably a question like this already but i couldn't

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.