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 7912397
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T13:35:23+00:00 2026-06-03T13:35:23+00:00

I want to copy table from aDB to another bDB. So I made a

  • 0

I want to copy table from aDB to another bDB.

So I made a method.
I think open 2 database and Using insert query will work but I don’t know detail way.

-(void)copyDatabaseTableSoruceFileName:(NSString *)source CopyFileName:(NSString *)copy
{
sqlite3 *sourceDatabase=NULL;
sqlite3 *copyDatabase=NULL;

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES);
NSString* documentDir = [paths objectAtIndex:0];

//source
    [self copyFileIfNeed:source path:documentDir];

NSString *SourceDBPath = [documentDir stringByAppendingPathComponent:source];
if( sqlite3_open([SourceDBPath UTF8String],&sourceDatabase)!= SQLITE_OK )
{
    NSLog(@"DB File Open Error :%@", SourceDBPath);
   sourceDatabase = NULL;
}
//copy    
[self copyFileIfNeed:copy path:documentDir];

NSString *CopyDBPath = [documentDir stringByAppendingPathComponent:copy];
if( sqlite3_open([CopyDBPath UTF8String],&copyDatabase)!= SQLITE_OK )
{
    NSLog(@"DB File Open Error :%@", CopyDBPath);
    copyDatabase = NULL;
}

//source to copy


 // How in this area?


}

Is it right? and how to make more ? //source to copy area.

  • 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-03T13:35:24+00:00Added an answer on June 3, 2026 at 1:35 pm

    in sqlite3, you can combine the ATTACH[1] and CREATE TABLE .. AS[2] commands:

    first, you are opening the “bDB” database, and then execute the following statement:

    ATTACH DATABASE "myother.db" AS aDB;
    

    After that, you can use the CREATE TABLE syntax:

    CREATE TABLE newTableInDB1 AS SELECT * FROM aDB.oldTableInMyOtherDB;
    

    This will “copy” the data over to your new database.
    If you want to merge the data, there is also an INSERT[3] statement, but with that you will need to reference your fields like this:

    INSERT INTO newtable (field1,field2) 
      SELECT otherfield1,otherfield2 FROM aDB.oldTableInMyOtherDB;
    

    References:

    [1] http://www.sqlite.org/lang_attach.html

    [2] http://www.sqlite.org/lang_createtable.html

    [3] http://www.sqlite.org/lang_insert.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using VB 6 and Access 2003 I want to copy a table from one
I want to copy a row from a table in a database to an
I want to copy data from one column to another column of other table.
Sometimes if I want to quickly copy records from one table to another (that
I want to copy table from postgis database to the PC hard drive (format
How to copy from one database to another database. Database name visco I want
I want to copy data to a new database. However another table is included
I want to copy a table (say tbl_1) from one database (say source_db) to
I want to copy data from one table to another in MySQL. Table 1
I want to copy data from one table into another table where the columns

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.