- select(String, T) - 接口 中的方法org.teasoft.bee.osql.BeeSql
-
根据sql查询数据,数据类型与entity类型一致
- select(String) - 接口 中的方法org.teasoft.bee.osql.BeeSql
-
查询并将每一行结果转成String数组.select and transform every record to string array.
- select(String, T, Object[]) - 接口 中的方法org.teasoft.bee.osql.CallableSql
-
- select(String, Object[]) - 接口 中的方法org.teasoft.bee.osql.CallableSql
-
- Select - org.teasoft.bee.osql.chain中的接口
-
- select() - 接口 中的方法org.teasoft.bee.osql.chain.Select
-
- select(String) - 接口 中的方法org.teasoft.bee.osql.chain.Select
-
- select(T) - 接口 中的方法org.teasoft.bee.osql.MoreTable
-
根据实体对象entity查询数据
According to entity object select records from database.
- select(T, int, int) - 接口 中的方法org.teasoft.bee.osql.MoreTable
-
根据实体对象entity查询数据
According to entity object select records from database.
- select(T, Condition) - 接口 中的方法org.teasoft.bee.osql.MoreTable
-
根据实体对象和Condition查询数据.select the records according to entity and condition.
- select(String, T, Object[]) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
通过问号的占位语句查询数据
eg: select * from orders where userid=?
- select(String, T, Object[], int, int) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
- select(String, T, Map<String, Object>) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
通过变量的占位语句查询数据.entity和map都可以向参数传递值,map可以作为entity的补充,用于传递范围查询等复杂查询的参数.
- select(String, T, Map<String, Object>, int, int) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
- select(String, Object[]) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
查询并将每一行结果转成String数组.select and transform every record to string array.
- select(String, Object[], int, int) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
- select(String, Map<String, Object>) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
查询并将每一行结果转成String数组.select and transform every record to string array.
- select(String, Map<String, Object>, int, int) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
- select(T) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLAbstractServiceImpl
-
- select(T, Condition) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLAbstractServiceImpl
-
- select(T, int) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- select(T, int, int) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- select(T, String, int, int) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- select(T, String) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- select(T, IncludeType) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- select(T, IncludeType, Condition) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- select(T) - 接口 中的方法org.teasoft.bee.osql.Suid
-
根据实体对象entity查询数据
According to entity object select records from database.
- select(T, Condition) - 接口 中的方法org.teasoft.bee.osql.Suid
-
根据实体对象和Condition查询数据.select the records according to entity and condition.
- select(T, int) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
根据实体对象entity查询数据
According to entity object select records from database.
- select(T, int, int) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
根据实体对象entity查询数据
According to entity object select records from database.
- select(T, String) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
- select(T, String, int, int) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
- select(T, IncludeType) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
根据实体对象entity查询数据.
- select(T, IncludeType, Condition) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
已过时。
Suid的 select(T entity,Condition condition)方法中,可以通过condition设置includeType.
- selectById(T, Integer) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- selectById(T, Long) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- selectById(T, String) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- selectById(T, Integer) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
根据id查询记录. select record by id.
- selectById(T, Long) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
根据id查询记录. select record by id.
- selectById(T, String) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
根据id查询记录. select record by id.
- selectFun(String) - 接口 中的方法org.teasoft.bee.osql.BeeSql
-
用函数查询结果.select result with function.
- selectFun(String, Object[]) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
用函数查询结果.select result with function.
- selectFun(String, Map<String, Object>) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
用函数查询结果.select result with function.
- selectJson(String) - 接口 中的方法org.teasoft.bee.osql.BeeSql
-
查询结果,并以json格式返回.select and return json format result.
- selectJson(String, Object[]) - 接口 中的方法org.teasoft.bee.osql.CallableSql
-
- selectJson(String, Object[]) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
查询结果,并以json格式返回.select and return json format result.
- selectJson(String, Object[], int, int) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
查询结果,并以json格式返回.select and return json format result.
- selectJson(String, Map<String, Object>) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
查询结果,并以json格式返回.select and return json format result.
- selectJson(String, Map<String, Object>, int, int) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
查询结果,并以json格式返回.select and return json format result.
- selectJson(T) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- selectJson(T, IncludeType) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- selectJson(T, IncludeType, Condition) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- selectJson(T) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
根据实体对象entity查询数据,并返回Json格式结果.
- selectJson(T, IncludeType) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
根据实体对象entity查询数据
- selectJson(T, IncludeType, Condition) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
根据实体对象entity查询数据,并以Json格式返回
- selectOne(T) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- selectOne(T) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
查询一个实体.
- selectOrderBy(T, String) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- selectOrderBy(T, String, OrderType[]) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- selectOrderBy(T, String) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
应用排序查询结果,排序的字段默认按升序排列.
- selectOrderBy(T, String, OrderType[]) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
应用排序查询结果.
- selectSomeField(String, T) - 接口 中的方法org.teasoft.bee.osql.BeeSql
-
查询部分字段 select some field
- selectSomeField(String, T, Object[]) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
通过问号的占位语句查询数据(只查询部分字段)
eg: select * from orders where userid=?
- selectSomeField(String, T, Object[], int, int) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
- selectSomeField(String, T, Map<String, Object>) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
通过变量的占位语句查询数据(只查询部分字段).entity和map都可以向参数传递值,map可以作为entity的补充,用于传递范围查询等复杂查询的参数.
- selectSomeField(String, T, Map<String, Object>, int, int) - 接口 中的方法org.teasoft.bee.osql.PreparedSql
-
- selectString(T) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- selectString(T, String) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- selectString(T) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
查询实体,每个字段都是以字符串类型返回.
- selectString(T, String) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
查询部分字段,每个字段都是以字符串类型返回.
- selectWithFun(T, FunctionType, String) - 类 中的方法org.teasoft.bee.osql.service.ObjSQLRichAbstractServiceImpl
-
- selectWithFun(T, FunctionType, String) - 接口 中的方法org.teasoft.bee.osql.SuidRich
-
使用函数查询结果.select result with function.
- set(String, String) - 接口 中的方法org.teasoft.bee.osql.chain.Update
-
- set(String, Number) - 接口 中的方法org.teasoft.bee.osql.chain.Update
-
- setDataSource(DataSource) - 类 中的方法org.teasoft.bee.osql.BeeAbstractFactory
-
- setIncludeType(IncludeType) - 接口 中的方法org.teasoft.bee.osql.Condition
-
设置IncludeType过滤参数.op,between,notBetween方法设置的字段,不受includeType的值影响.
- setReadOnly(boolean) - 接口 中的方法org.teasoft.bee.osql.transaction.Transaction
-
- setSuidType(SuidType) - 接口 中的方法org.teasoft.bee.osql.ConditionAssistant
-
- setTimeout(int) - 接口 中的方法org.teasoft.bee.osql.transaction.Transaction
-
- setTransaction(Transaction) - 类 中的方法org.teasoft.bee.osql.BeeAbstractFactory
-
- setTransactionIsolation(TransactionIsolationLevel) - 接口 中的方法org.teasoft.bee.osql.transaction.Transaction
-
- size(int) - 接口 中的方法org.teasoft.bee.osql.chain.Select
-
- size(Integer) - 接口 中的方法org.teasoft.bee.osql.Condition
-
- SqlNullException - org.teasoft.bee.osql.exception中的异常错误
-
Sql语句是null的异常.Exception of sql statement string is null.
- SqlNullException() - 异常错误 的构造器org.teasoft.bee.osql.exception.SqlNullException
-
- SqlNullException(String) - 异常错误 的构造器org.teasoft.bee.osql.exception.SqlNullException
-
- SqlNullException(String, Throwable) - 异常错误 的构造器org.teasoft.bee.osql.exception.SqlNullException
-
- SqlNullException(Throwable) - 异常错误 的构造器org.teasoft.bee.osql.exception.SqlNullException
-
- start(int) - 接口 中的方法org.teasoft.bee.osql.chain.Select
-
- start(Integer) - 接口 中的方法org.teasoft.bee.osql.Condition
-
- Suid - org.teasoft.bee.osql中的接口
-
数据库操作接口,包括查,改,增,删 Suid (select,update,insert,delete),
默认不处理null和空字符串.Database operation: Suid (select,update,insert,delete),
the null and empty string are not handled by default.
- SuidRich - org.teasoft.bee.osql中的接口
-
数据库操作接口,包括查,改,增,删 Suid (select,update,insert,delete),
该接口比Suid接口提供更多的参数选择.Database operation: Suid (select,update,insert,delete),
it supports more parameters than Suid.
- SuidType - org.teasoft.bee.osql中的枚举
-
数据库Suid操作类型.Database Suid type.
- SysValue - org.teasoft.bee.osql.annotation中的注释类型
-
Bee框架内部使用的注解,用于将properties文件的值设置到类属性.Annotation use in Bee for setting class' field value by properties.