public interface AnylineDao<E>
DataSet querys(RunPrepare prepare, ConfigStore configs, String... conditions)
<T> EntitySet<T> querys(Class<T> clazz, ConfigStore configs, String... conditions)
<T> EntitySet<T> querys(RunPrepare prepare, Class<T> clazz, ConfigStore configs, String... conditions)
DataSet querys(RunPrepare prepare, String... conditions)
DataSet selects(RunPrepare prepare, ConfigStore configs, String... conditions)
DataSet selects(RunPrepare prepare, String... conditions)
List<Map<String,Object>> maps(RunPrepare prepare, ConfigStore configs, String... conditions)
int count(RunPrepare prepare, ConfigStore configs, String... conditions)
int count(RunPrepare prepare, String... conditions)
boolean exists(RunPrepare prepare, ConfigStore configs, String... conditions)
boolean exists(RunPrepare prepare, String... conditions)
int update(String dest, Object data, ConfigStore configs, List<String> columns)
data - 需要更新的数据dest - 需要更新的表,如果没有提供则根据data解析columns - 需要更新的列 如果没有提供则解析data解析configs - 更新条件 如果没提供则根据data主键int update(String dest, Object data, ConfigStore configs, String... columns)
int update(Object data, ConfigStore configs, String... columns)
int update(Object data, ConfigStore configs, List<String> columns)
int insert(String dest, Object data, boolean checkPrimary, String... columns)
data - 需要插入的数据checkPrimary - 是否需要检查重复主键,默认不检查columns - 需要插入的列dest - 表int save(String dest, Object data, boolean checkPrimary, String... columns)
dest - 表data - datacheckPrimary - 是否需要检查重复主键,默认不检查columns - columnsint execute(RunPrepare prepare, ConfigStore configs, String... conditions)
int execute(RunPrepare prepare, String... conditions)
boolean execute(Procedure procedure)
procedure - procedureDataSet querys(Procedure procedure, PageNavi navi)
procedure - procedureint delete(String table, ConfigStore configs, String... conditions)
int deletes(String table, String key, Collection<Object> values)
table - 表key - 列values - 值集合LinkedHashMap<String,Database> databases()
LinkedHashMap<String,Table> tables(String name, String types)
LinkedHashMap<String,Table> tables(String types)
LinkedHashMap<String,Table> tables()
LinkedHashMap<String,MasterTable> mtables(String catalog, String schema, String name, String types)
LinkedHashMap<String,MasterTable> mtables(String schema, String name, String types)
LinkedHashMap<String,MasterTable> mtables(String name, String types)
LinkedHashMap<String,MasterTable> mtables(String types)
LinkedHashMap<String,MasterTable> mtables()
LinkedHashMap<String,PartitionTable> ptables(String catalog, String schema, String master, String name)
LinkedHashMap<String,PartitionTable> ptables(String schema, String master, String name)
LinkedHashMap<String,PartitionTable> ptables(String master, String name)
LinkedHashMap<String,PartitionTable> ptables(String master)
LinkedHashMap<String,PartitionTable> ptables(MasterTable master)
LinkedHashMap<String,PartitionTable> ptables(MasterTable master, Map<String,Object> tags, String name)
LinkedHashMap<String,PartitionTable> ptables(MasterTable master, Map<String,Object> tags)
LinkedHashMap<String,Column> columns(Table table)
LinkedHashMap<String,Column> columns(String table)
LinkedHashMap<String,Tag> tags(Table table)
LinkedHashMap<String,Tag> tags(String table)
LinkedHashMap<String,Index> indexs(Table table)
LinkedHashMap<String,Index> indexs(String table)
LinkedHashMap<String,Constraint> constraints(Table table)
LinkedHashMap<String,Constraint> constraints(String table)
LinkedHashMap<String,Constraint> constraints(String catalog, String schema, String table)
boolean create(MasterTable table) throws Exception
Exceptionboolean alter(MasterTable table) throws Exception
Exceptionboolean drop(MasterTable table) throws Exception
Exceptionboolean create(PartitionTable table) throws Exception
Exceptionboolean alter(PartitionTable table) throws Exception
Exceptionboolean drop(PartitionTable table) throws Exception
Exceptionboolean add(Constraint constraint) throws Exception
Exceptionboolean alter(Constraint constraint) throws Exception
Exceptionboolean alter(Table table, Constraint constraint) throws Exception
Exceptionboolean drop(Constraint constraint) throws Exception
ExceptionCopyright © 2023. All rights reserved.