Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

confused in sqlite select statement

I am trying get the data from my database but i am not getting solve out I try like this

-(void)information

{
    //[self createEditableCopyOfDatabaseIfNeeded];
    NSString *filePath = [self getWritableDBPath];

    sqlite3 *database;
    if(sqlite3_open([filePath UTF8String], &database) == SQLITE_OK)
    {
        NSString *qu = @"Select  Name FROM empl where SyncStatus ='1'";
        sqlite3_stmt *compiledStatement;
        if(sqlite3_prepare_v2(database, [qu UTF8String], -1, &compiledStatement, NULL) == SQLITE_OK) 
        {
            char *firstColumn = (char *)sqlite3_column_text(compiledStatement, 0);

            if (firstColumn==nil)
            {
                NSString *name= [[NSString stringWithUTF8String:firstColumn]autorelease];
                NSLog(@"%c",name);

            }
            if(sqlite3_step(compiledStatement) != SQLITE_ROW ) 
            {

                UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"UIAlertView" message:@"User is not valid" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
                [alert show];
                [alert release];
                alert = nil;
            }
        }
        sqlite3_finalize(compiledStatement);
    }
    sqlite3_close(database);
}

it get crash And It show me error that reason: '* +[NSString stringWithUTF8String:]: NULL cString' * Call stack at first throw:

like image 265
Harish Avatar asked Jan 19 '23 19:01

Harish


2 Answers

use like this

if(sqlite3_step(compiledStatement) == SQLITE_ROW ) 
            {
                char *firstColumn = (char *)sqlite3_column_text(compiledStatement, 0);
                NSString *name= [[NSString alloc]initWithUTF8String:firstColumn];


            }

I hope it will help you try this

like image 127
Ajay Avatar answered Jan 21 '23 08:01

Ajay


I think firstColumn is NULL , it make program crash . You try to check data in database is null.

like image 24
Dashzaki Avatar answered Jan 21 '23 09:01

Dashzaki