i m using sqlite
i am geting a return value frmo DB in this manner
"returnCount = [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt,0)];"
but the returend value is an integer value. how can i get a int value instead of paasing it in string...like this thing here "[NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt,0)];"
is for string, is there any way to get it in "integer" right away, otherwise i need to cast it.
suggestions please.