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

  • Home
  • SEARCH
  • 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 6036587
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T05:56:47+00:00 2026-05-23T05:56:47+00:00

I have an iPhone application that uses a sqlite3 database for saving data and

  • 0

I have an iPhone application that uses a sqlite3 database for saving data and before I release the app I need to be sure that some of the tables data (that the user has saved) must be copied to the new database.

How should I manage this migration. I was thinking about separating the database and the queries. Is that bad? So when the app opens I check if the database is in the document folder, if not copy the database and run the queries in the separate file. Then when it is a new version I check the version number and run just the queries in the file (which update the data and alter some of them), and not copy the database?

  • 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-05-23T05:56:48+00:00Added an answer on May 23, 2026 at 5:56 am

    One way of doing this is to have a table in your database that contains a schema version of the database.

    Once a user have a database in the documents folder (which was probably copied from a premade database from the app bundle) you should make changes to that database to keep it in sync with the current schema. This includes upgrading the schema and any changed data.

    You can do this by bundling a number of sql scripts in your app that will bring the users database schema forward one step at a time, e.g.:

    1. Read schema version from users database => 3 (current is 5)
    2. Execute sql script “schema_3_to_4.sql”
    3. Execute sql script “schema_4_to_5.sql”
    4. All done – ready to use

    If you don’t have a schema version in your current db, just regard this as version 0 and add the table in your version 1 update, e.g:

    begin exclusive transaction;
    
    create table schema (version integer);
    insert into schema(version) values (1);
    
    create table temp_update as select * from question;
    drop table question;
    create table question(id INTEGER PRIMARY KEY, new_answer INTEGER);
    insert into question(id, new_answer) select id, 42 from temp_update;
    drop table temp_update;
    
    commit;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an application that works some what similar to how iPhone's Contact application
I have an iPhone application with a settings.bundle that handles various settings for my
I have a webview in my iPhone application, and I also have some html
I have created an iPhone application based on an OpenGL view. Now I would
I have worked on iPhone application but not aware of the formalities to submit
In my iPhone application I have a table view. When user taps any row,
Does anyone have any suggestions as to how to version an iphone application aside
I have two projects, a Cocoa iPhone application and a static library which it
I have included <zlib.h> in my iphone application and the source code I was
AVFoundation.framework is not where the documentation says it should be. I have iPhone SDK

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.