All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.sylinx.hbatis.db.common.Callable Maven / Gradle / Ivy

The newest version!
package cn.sylinx.hbatis.db.common;

import java.sql.Connection;
import java.sql.SQLException;

public interface Callable {
	/**
	 * 自定义操作
	 * 
	 * @param con
	 *            无需手动关闭
	 * @return
	 */
	public T call(Connection con) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy