比如说,我有一个名为 name 的搜索字段。如果用户在搜索字段中键入“John”,我应该检查“名称”字段中的值“John”并选择所有相应的字段值。'John' 将是从 searchBar.text 获得的 NSString,它必须作为参数添加到查询中。我构建了一个这样的 sql 语句,它从来没有工作过。
NSString *query = [NSString stringWithFormat:@"select * from Employee where EmployeeName LIKE '%%@%'", searchText.text];
const char *sqlStatement = [query UTF8String];
我也试过这个
NSString *query = [NSString stringWithFormat:@"select * from Employee where EmployeeName LIKE %'%@'%", searchText.text];
const char *sqlStatement = [query UTF8String];
没有任何效果。