views:

89

answers:

1
while(sqlite3_step(compiledStatement) == SQLITE_ROW) {

  NSString *araci2 = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 2)];

  [dbarray addObject:araci2];

  NSLog(@"DB ITEMS: %@",dbarray);

}

First of all, I try to get a description longer than a line from db. While part of the value appears meaningful, some of the characters of those values are absurd like "00fu". How can I print them in proper fashion ?

A: 

I got over gentles. .. I created class and received those values by class variable.