接口 IDbQuery
- 所有已知实现类:
AbstractDbQuery,ClickHouseQuery,DB2Query,DbQueryDecorator,DMQuery,FirebirdQuery,GaussQuery,GbaseQuery,H2Query,KingbaseESQuery,MariadbQuery,MySqlQuery,OracleQuery,OscarQuery,PostgreSqlQuery,SqliteQuery,SqlServerQuery,SybaseQuery,XuguQuery
public interface IDbQuery
表数据查询接口
- 从以下版本开始:
- 2018-01-16
- 作者:
- hubin
-
方法概要
修饰符和类型方法说明字段注释String[]自定义字段名称fieldKey()主键字段字段名称字段类型booleanisKeyIdentity(ResultSet results) 判断主键是否为identity表注释表字段信息查询 SQL表名称表信息查询 SQL
-
方法详细资料
-
tablesSql
String tablesSql()表信息查询 SQL -
tableFieldsSql
String tableFieldsSql()表字段信息查询 SQL -
tableName
String tableName()表名称 -
tableComment
String tableComment()表注释 -
fieldName
String fieldName()字段名称 -
fieldType
String fieldType()字段类型 -
fieldComment
String fieldComment()字段注释 -
fieldKey
String fieldKey()主键字段 -
isKeyIdentity
判断主键是否为identity- 参数:
results- ResultSet- 返回:
- 主键是否为identity
- 抛出:
SQLException- ignore
-
fieldCustom
String[] fieldCustom()自定义字段名称
-