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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:17:23+00:00 2026-05-25T18:17:23+00:00

I am trying to create(successful), insert(problem here) and select(just to check i i am

  • 0

I am trying to create(successful), insert(problem here) and select(just to check i i am going right) records into data base.

My whole code is as:

-(NSInteger) InsertDataInDatabae {

    char *sqlStatement;
    sqlite3 *pDb;
    char *errorMsg;
    int returnCode;
    char *databaseName;
    databaseName="WaitListAll.db";
    returnCode = sqlite3_open(databaseName, &pDb);

    if(returnCode!=SQLITE_OK) {
        NSLog(@"Error in opening Database");
        return -1;
    }
    sqlStatement="drop table if exists waitlistallTable";
    returnCode = sqlite3_exec(pDb, sqlStatement, NULL, NULL, &errorMsg);

    if(returnCode!=SQLITE_OK) {
        NSLog(@"Table could not be droped");
        return -1;
    }

    sqlStatement="create table waitlistallTable(source varchar(10),waitlistid varchar(10),""restaurantid varchar(10),consumerid varchar(10), timeadded varchar(10))";

    returnCode=sqlite3_exec(pDb, sqlStatement, NULL, NULL, &errorMsg);
    if(returnCode!=SQLITE_OK) {
        NSLog(@"Table could not be Created Error:%@",errorMsg);//**getting error here as:unrecognized token ""**
        return -1;
    }

    NSInteger  i;
    for(i=0;i<[waitListAllRecordsArray count];i++) {
        NSDictionary *objDict=[waitListAllRecordsArray objectAtIndex:i];
        NSString *src,*wid,*rid,*cid,*tadded;
        src=[objDict objectForKey:@"SOURCE"];
        wid=[objDict objectForKey:@"WAITLISTID"];
        rid=[objDict objectForKey:@"RESTAURANTID"];
        cid=[objDict objectForKey:@"CONSUMERID"];
        tadded=[objDict objectForKey:@"TIMEADDED"];
        printf("\n %s %s %s  %s %s",src,wid,rid,cid);
        sqlStatement = sqlite3_mprintf("insert into waitlistallTable values(%s, %s, %s, %s, %s)",src,wid,rid,cid,tadded);

        returnCode=sqlite3_exec(pDb, sqlStatement, NULL, NULL, &errorMsg);

        if(returnCode!=SQLITE_OK) {
            printf("Error in inserting record :%s",errorMsg);
            return -1;
        }
    }

    sqlite3_stmt *statement;
    sqlStatement=sqlite3_mprintf("selet * from waitlistallTable");
    returnCode = sqlite3_prepare_v2(pDb, sqlStatement, strlen(sqlStatement), &statement,NULL);
    if(returnCode!=SQLITE_OK) {
        NSLog(@"Record could  not be Inserted  Error:%@",errorMsg);
        return -1;
    }

    returnCode=sqlite3_step(statement);
    while(returnCode==SQLITE_ROW) {
        char *src,*wid,*rid,*cid,*tadded;
        src=sqlite3_column_text(statement, 0);
        wid=sqlite3_column_text(statement, 1);
        rid=sqlite3_column_text(statement, 2);
        cid=sqlite3_column_text(statement, 3);
        tadded=sqlite3_column_text(statement, 4);
        NSLog(@"%@\t %@\t %@ \t%@ %@",src,wid,rid, cid,tadded);
    }

    sqlite3_finalize(statement);
    sqlite3_close(&pDb);

    //  sqlite3_free(sqlStatement);
    //NSLog(@"%@\t %@\t %@ \t%@ %@",src,wid,rid, cid,tadded);       //NSLog(@"*******object for dictionary is **************%@",[objDict objectForKey:@"SOURCE"]);
}

Any suggestion would be very helpful.
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-05-25T18:17:23+00:00Added an answer on May 25, 2026 at 6:17 pm

    You are trying to insert NSString object with %s formatter,
    try out:

    sqlStatement=sqlite3_mprintf("insert into waitlistallTable values(%s, %s, %s, %s, %s)",[src UTF8String],[wid UTF8String],[rid UTF8String],[cid UTF8String],[tadded UTF8String]);
    

    hope it’ll help..!

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

Sidebar

Related Questions

Ok so I am trying create a login script, here I am using PHP5
I am trying to insert a datetime value into a SQLite database. It seems
I'm trying to create a login aspx page. What am I doing wrong here?
I am trying to insert rows into an html table with javascript. I have
I am trying to create virtual desktop. I complete successfully.But i am not able
I am trying create a WCF service that leverages the WPF MediaPlayer on the
I'm trying create a bot which automatically likes Facebook posts. Using Mechanize I can
I am trying create a delegate representation of constructor by emitting a Dynamic Method,
Trying to create a QtRuby application, I get the following error: /usr/lib64/ruby/site_ruby/1.8/Qt/qtruby4.rb:2144: [BUG] Segmentation
Trying to create a user account in a test. But getting a Object reference

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.