1 /******************************************************************************* 2 * Copyright (c) 2005, 2006 Imola Informatica. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the LGPL License v2.1 5 * which accompanies this distribution, and is available at 6 * http://www.gnu.org/licenses/lgpl.html 7 *******************************************************************************/ 8 /** 9 * 10 */ 11 package it.imolinfo.jbi4cics.connection.jdbc.util; 12 13 import java.sql.Connection; 14 import java.sql.SQLException; 15 import java.sql.Statement; 16 17 18 /** 19 * @author raffaele 20 * 21 */ 22 public interface DisconnectedStatement extends Statement{ 23 public void setConnection(Connection con); 24 public void setConnected(boolean connected) throws SQLException; 25 public boolean isConnected(); 26 }