Hi All,
I'm trying to find a particular record from AGSGDBFeatureTable. Below is my code.
AGSQuery* query = [AGSQuery query];
query.whereClause = [NSString stringWithFormat:@STR_ID = '%@'",self.currentStructure.strID];
[self.structureFeatureTable queryResultsWithParameters:query completion:^(NSArray *results, NSError *error) {
NSLog(@%@",results);
}];
From code, I'm able to fetch properties of table. and query is also having right object.
It giving me always empty array in result with error nil. Is something missing from my end. Please help me with this.