Appcelerator SQLite Like 运算符语法
Appcelerator SQLite Like Operator syntax
我正在使用 appcelerator 并与 appcelerator studio 一起工作,但是我对在 appcelerator 的查询字符串中使用 like 运算符感到困惑
values = Alloy.Globals.database_file.execute('select ChapterID,ChapterCode,ChapterName,ChapterOwner,ChapterOrder,ChapterDescription,ChapterNote,ParentChapterID from CbahiHSChapters like "%' searchText '%"');
引号放置不正确。
一切看起来都很好,但你缺少 +
这样的标志和条件
values = Alloy.Globals.database_file.execute('select ChapterID,ChapterCode,ChapterName,ChapterOwner,ChapterOrder,ChapterDescription,ChapterNote,ParentChapterID from CbahiHSChapters where like "%' + searchText + '%"');
我正在使用 appcelerator 并与 appcelerator studio 一起工作,但是我对在 appcelerator 的查询字符串中使用 like 运算符感到困惑
values = Alloy.Globals.database_file.execute('select ChapterID,ChapterCode,ChapterName,ChapterOwner,ChapterOrder,ChapterDescription,ChapterNote,ParentChapterID from CbahiHSChapters like "%' searchText '%"');
引号放置不正确。
一切看起来都很好,但你缺少 +
这样的标志和条件
values = Alloy.Globals.database_file.execute('select ChapterID,ChapterCode,ChapterName,ChapterOwner,ChapterOrder,ChapterDescription,ChapterNote,ParentChapterID from CbahiHSChapters where like "%' + searchText + '%"');