- getCurrentDao() - 类 中的方法com.centit.framework.mybatis.dao.JsonObjectWork
-
- getCurrValueOfSequence(SqlSession, String) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
获取sequence的当前值 只有oracle DB2支持
- getDDLOperations() - 类 中的方法com.centit.framework.mybatis.dao.DDLOperationsWork
-
- getNextKeyBySequence(SqlSession, String, int) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
获取sequence的下一个新值 只有oracle DB2支持
- getNextLongSequence(SqlSession, String) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
获取sequence的下一个新值 只有oracle DB2支持
- getNextValueOfSequence(SqlSession, String) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
获取sequence的下一个新值 只有oracle DB2支持
- getObjectById(Object) - 类 中的方法com.centit.framework.mybatis.dao.JsonObjectWork
-
- getObjectById(Map<String, Object>) - 类 中的方法com.centit.framework.mybatis.dao.JsonObjectWork
-
- getObjectByProperties(Map<String, Object>) - 类 中的方法com.centit.framework.mybatis.dao.JsonObjectWork
-
- getSequenceNextValue(String) - 类 中的方法com.centit.framework.mybatis.dao.JsonObjectWork
-
- getSequenceNextValueUseTable(SqlSession, String) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
用表来模拟sequence
create table sequence_table
(sequence_Name varchar(100) not null primary key,
current_value integer);
- getSingleIntBySql(SqlSession, String) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
获取唯一的一个整形数据的SQL
- getSingleIntBySql(SqlSession, String, Object) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
- getSingleObjectBySql(SqlSession, String) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
- getSingleObjectBySql(SqlSession, String, Object) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
- getSingleObjectBySql(SqlSession, String, Object[]) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
- getSingleObjectBySql(SqlSession, String, String, Object) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
- getSingleObjectBySql(SqlSession, String, Map<String, Object>) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
- getSingleStringBySql(SqlSession, String) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
获取唯一的一个字符串数据的SQL
- getSqlReturnObjectCounts(SqlSession, String, Object[]) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
获取 符合条件的记录数量
- getSqlReturnObjectCounts(SqlSession, String, Map<String, Object>) - 类 中的静态方法com.centit.framework.mybatis.dao.DatabaseOptUtils
-
获取 符合条件的记录数量
- getSqlSessionWithOpenedConnection() - 类 中的方法com.centit.framework.mybatis.dao.BaseDaoSupport
-
直接调用 getSqlSession().getConnection() 有时返回为空;
调用 getSqlSession().getConfiguration().getEnvironment().getDataSource().getConnection()
返回的是一个新建的Connection这样和当前的SQLSession不在统一事务中(也不在统一个session中)。
- getTableInfo() - 类 中的方法com.centit.framework.mybatis.dao.JsonObjectWork
-