I have create a database. In my view i am checking provided dat is already exist or not. If exist then retrun Yes otherwise no. for this i have use this code..
+(BOOL)compareDataInDB:(NSString *)Start_text EndAddress:(NSString *)End_text Categories:(NSString *)Category_text{
BOOL flag=FALSE;
if(sqlite3_open([dbPath UTF8String], &db) == SQLITE_OK) {
//int LastId="select Max(place_id) from Places";
// NSLog(@"%i",LastId);
const char *sql = "select * from Places where Start_text = Start_text and End_text = End_text and Category_text = Category_text";
sqlite3_stmt *stmt;
int rtnVal = sqlite3_prepare_v2(db, sql, -1, &stmt, NULL);
if( rtnVal == SQLITE_OK) {
while (sqlite3_step(stmt) == SQLITE_ROW) {
flag=TRUE;
}
}
sqlite3_finalize(stmt);
}
sqlite3_close(db);
if(flag==TRUE)
return YES;
else
return NO;
}
on button action i have use this code
-(IBAction)Find{
BOOL tmp=[GlobalClass compareDataInDB:txtstart.text EndAddress:txtend.text Categories:txtCategory.text];
if(tmp)
[GlobalClass storeDataInDB:txtstart.text EndAddress:txtend.text Categories:txtCategory.text];
else
NSLog(@"exsit data in database");
}
Now problem is that it always return no. What is error in this code? And How make compression in data from data base?
Thanks in advance...
