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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T23:03:31+00:00 2026-06-11T23:03:31+00:00

I have a database called China.sqlite nel Bundle, which consist of 16 tables. I

  • 0

I have a database called China.sqlite nel Bundle, which consist of 16 tables. I have to open the table elements from the table called Menu.How can I do? Thanks in advance

  • 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-11T23:03:32+00:00Added an answer on June 11, 2026 at 11:03 pm
    sqlite3 *database;
    
     NSString *databasePath = ......;
    
    
    if (sqlite3_open([databasePath UTF8String], &database) == SQLITE_OK){
    
        NSString *sqlString = @"SELECT ......."; //Query
    
        const char *sql = [sqlString UTF8String];
        if (sqlite3_prepare_v2(database, sql, -1, &statement, NULL) == SQLITE_OK) {
    
            while (sqlite3_step(statement) == SQLITE_ROW) {
    
    //Get the first 3 coloms of table
                NSString *col1 = [NSString stringWithUTF8String:(char *) sqlite3_column_text(statement, 0)];
                NSString *col2 = [NSString stringWithUTF8String:(char *) sqlite3_column_text(statement, 1)];
                NSNumber *col3 = [NSString stringWithUTF8String:(char *) sqlite3_column_text(statement, 2)];
    
    //save them in dictionary 
    
                returnDictionary = [NSDictionary dictionaryWithObjects:[NSArray col1, col2, col3, nil]
                                                               forKeys:[NSArray arrayWithObjects:@"Col1", @"Col2", @"Col3", nil]];
    
            }
        } else {
           //Error handling
        }
    
    
    }
    

    Assuming that you database file is in main bundle

    NSString *databasePath = [[NSBundle mainBundle] pathForResource:@"China" ofType:@"sqlite"];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I Have a database called 'lms' with two tables loan and value, table loan
I have an sqlite database called 'ProductDatabase.sql', which I have copied into my applications
I have a database table called Posts which stores all the information regarding an
I have a database table called AllCustomersHistoryOfRecords which is table with history of all
I have a database called av2web, which contains 130 MyISAM tables and 20 innodb
I have a MySQL database called bookfeather. It contains 56 tables. Each table has
Say I have a database called Poll and have these two table structures. poll
I have a MySQL database table called Participant that looks something like this: (idParticipant)
I have an ms-access database called db.mdb and it contains various table. I;m creating
I have a table on my database called 'Log'. This Log table contains ID,

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.