1 7 8 package java.sql; 9 10 33 34 public interface SQLInput { 35 36 37 43 50 String readString() throws SQLException ; 51 52 59 boolean readBoolean() throws SQLException ; 60 61 68 byte readByte() throws SQLException ; 69 70 77 short readShort() throws SQLException ; 78 79 86 int readInt() throws SQLException ; 87 88 95 long readLong() throws SQLException ; 96 97 104 float readFloat() throws SQLException ; 105 106 113 double readDouble() throws SQLException ; 114 115 122 java.math.BigDecimal readBigDecimal() throws SQLException ; 123 124 131 byte[] readBytes() throws SQLException ; 132 133 139 java.sql.Date readDate() throws SQLException ; 140 141 147 java.sql.Time readTime() throws SQLException ; 148 149 155 java.sql.Timestamp readTimestamp() throws SQLException ; 156 157 163 java.io.Reader readCharacterStream() throws SQLException ; 164 165 171 java.io.InputStream readAsciiStream() throws SQLException ; 172 173 180 java.io.InputStream readBinaryStream() throws SQLException ; 181 182 186 207 Object readObject() throws SQLException ; 208 209 218 Ref readRef() throws SQLException ; 219 220 229 Blob readBlob() throws SQLException ; 230 231 240 Clob readClob() throws SQLException ; 241 242 251 Array readArray() throws SQLException ; 252 253 261 boolean wasNull() throws SQLException ; 262 263 265 274 java.net.URL readURL() throws SQLException ; 275 276 } 277 | Popular Tags |