1 15 package org.apache.tapestry.contrib.jdbc; 16 17 import java.sql.ResultSet ; 18 import java.sql.SQLException ; 19 import java.sql.Statement ; 20 21 30 31 public interface IStatement 32 { 33 37 38 public String getSQL(); 39 40 45 46 public Statement getStatement(); 47 48 52 53 public void close() throws SQLException ; 54 55 59 60 public ResultSet executeQuery() throws SQLException ; 61 62 67 68 public int executeUpdate() throws SQLException ; 69 } | Popular Tags |