⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 close.java

📁 Contents * Introduction * Installation * SmartPool 1.5 * Features from earlier releases
💻 JAVA
字号:
/* * @(#) Close 1.0 02/08/01 */package org.smartlib.pool.core;import java.sql.SQLException;/** * This interface is implemented by SmartStatement, SmartPreparedStatement * and SmartCallableStatement. This allows the SmartStament,  * SmartPreparedStatement, and SmartCallableStatement to be closed through  * this generic interface when auto-close is enabled. *  * * @author	Sachin Shekar Shetty * @version 1.0, 02/08/01 * */public interface Close {	/**	 * This method closes the Object. Any further invoking of this object would	 * result in an exception.	 *	 * @exception SQLException	 */	public void close() throws SQLException;	/**	 * This method returns true if the Object is already closed	 * 	 * @return true if the Object is already closed	 *	 * @exception SQLException	 */	public boolean isClosed() throws SQLException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -