Home > Database > Mysql Tutorial > mysql模糊查询匹配特殊字符

mysql模糊查询匹配特殊字符

WBOY
Release: 2016-06-07 15:24:36
Original
2027 people have browsed it

StringBuilder selectStatement = new StringBuilder(128).append(select).append(verbosity.getColumnSelectFragment()); StringBuilder fromStatement =new StringBuilder(128).append(from).append(tableName).append(where); fromStatement.append(COLUM

StringBuilder selectStatement = new StringBuilder(128).append("select").append(verbosity.getColumnSelectFragment());
StringBuilder fromStatement =new StringBuilder(128).append("from").append(tableName).append("where");

fromStatement.append(COLUMN.NAME.aliasAndName).append("like ? escape ?");

List params = new ArrayList();

params.add("%" + DB_ADAPTER.escapeAllWildcardsForLikeStatement(name) + "%");
params.add(DB_ADAPTER.getLikeEscapeSequence());
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template