1 7 8 package java.sql; 9 10 48 49 public interface Array { 50 51 66 String getBaseTypeName() throws SQLException ; 67 68 79 int getBaseType() throws SQLException ; 80 81 96 Object getArray() throws SQLException ; 97 98 117 Object getArray(java.util.Map <String ,Class <?>> map) throws SQLException ; 118 119 135 Object getArray(long index, int count) throws SQLException ; 136 137 166 Object getArray(long index, int count, java.util.Map <String ,Class <?>> map) 167 throws SQLException ; 168 169 190 ResultSet getResultSet () throws SQLException ; 191 192 219 ResultSet getResultSet (java.util.Map <String ,Class <?>> map) throws SQLException ; 220 221 248 ResultSet getResultSet(long index, int count) throws SQLException ; 249 250 283 ResultSet getResultSet (long index, int count, 284 java.util.Map <String ,Class <?>> map) 285 throws SQLException ; 286 287 } 288 289 290 | Popular Tags |