cn.hutool.db.sql.NamedSql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.db.sql;
import cn.hutool.core.map.MapUtil;
import cn.hutool.core.text.StrBuilder;
import cn.hutool.core.util.ArrayUtil;
import cn.hutool.core.util.StrUtil;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
/**
* 使用命名占位符的SQL,例如:select * from table where field1=:name1
* 支持的占位符格式为:
*
* 1、:name
* 2、@name
* 3、?name
*
*
* @author looly
* @since 4.0.10
*/
public class NamedSql {
private static final char[] NAME_START_CHARS = {':', '@', '?'};
private String sql;
private final List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy