public abstract class AbstractSqlManager extends Object implements SqlManager
构造器和说明 |
---|
AbstractSqlManager() |
限定符和类型 | 方法和说明 |
---|---|
void |
addSql(String key,
String value)
增加一条 Sql
|
boolean |
contains(String key) |
int |
count() |
Sql |
create(String key)
创建一个 Sql 对象
|
List<Sql> |
createCombo(String... keys)
根据一组 Sql 的键值,创建一个 Sql 列表
|
String |
get(String key)
获取一段 Sql 的原始文本
|
String[] |
keys() |
protected void |
loadSQL(Reader reader)
执行根据字符流来加载sql内容的操作
|
void |
remove(String key)
移除一条 Sql
|
void |
saveAs(File f) |
void |
setAllowDuplicate(boolean allowDuplicate) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
refresh
public boolean contains(String key)
public void saveAs(File f) throws IOException
IOException
public String get(String key)
SqlManager
get
在接口中 SqlManager
key
- Sql 的键值public Sql create(String key) throws SqlNotFoundException
SqlManager
create
在接口中 SqlManager
key
- Sql 的键值SqlNotFoundException
public List<Sql> createCombo(String... keys)
SqlManager
createCombo
在接口中 SqlManager
keys
- 键值数组public int count()
count
在接口中 SqlManager
public String[] keys()
keys
在接口中 SqlManager
public void addSql(String key, String value)
SqlManager
addSql
在接口中 SqlManager
key
- 键值value
- Sql 原始字符串public void remove(String key)
SqlManager
remove
在接口中 SqlManager
key
- 键值protected void loadSQL(Reader reader) throws IOException
reader
- IOException
public void setAllowDuplicate(boolean allowDuplicate)
Copyright © 2017. All rights reserved.