1 7 8 package javax.sql.rowset; 9 10 import java.sql.SQLException ; 11 12 115 public interface Joinable { 116 117 136 public void setMatchColumn(int columnIdx) throws SQLException ; 137 138 149 public void setMatchColumn(int[] columnIdxes) throws SQLException ; 150 151 170 public void setMatchColumn(String columnName) throws SQLException ; 171 172 184 public void setMatchColumn(String [] columnNames) throws SQLException ; 185 186 197 public int[] getMatchColumnIndexes() throws SQLException ; 198 199 211 public String [] getMatchColumnNames() throws SQLException ; 212 213 229 public void unsetMatchColumn(int columnIdx) throws SQLException ; 230 231 242 public void unsetMatchColumn(int[] columnIdxes) throws SQLException ; 243 244 260 public void unsetMatchColumn(String columnName) throws SQLException ; 261 262 272 public void unsetMatchColumn(String [] columnName) throws SQLException ; 273 } 274 | Popular Tags |