Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以搜索整个 SQLite 表以like匹配用户输入的字符串?
like
就像是:
cursor = db.query("myDBName", null, "* like '%"+input_string+"%'", null, null, null, null);
我只想说“查看数据库中的每个字段以查找与 input_string 匹配的任何内容”
谢谢大家!抱歉,如果这是一个格式不正确的问题。
恐怕 SQLite 不支持这种语法。 如果您已经知道表的结构,您可以一一搜索每一列,或者构建一个长的“col1 LIKE .. OR col2 LIKE..”查询。