cn.sylinx.hbatis.db.common.BaseDbOper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
The newest version!
package cn.sylinx.hbatis.db.common;
/**
* 基本的数据库操作
*
* @author han
*
*/
public interface BaseDbOper {
/**
* 获取原生sql操作对象
*
* @param datasourceName
* 数据源名称
* @return DbOper对象
*/
public abstract DbOper getDbOper();
}