1 16 package com.ibatis.sqlmap.client.extensions; 17 18 import java.math.BigDecimal ; 19 import java.net.URL ; 20 import java.sql.*; 21 import java.util.Calendar ; 22 import java.util.Map ; 23 24 36 public interface ResultGetter { 37 38 43 public Array getArray() throws SQLException; 44 45 50 public BigDecimal getBigDecimal() throws SQLException; 51 52 57 public Blob getBlob() throws SQLException; 58 59 64 public boolean getBoolean() throws SQLException; 65 66 71 public byte getByte() throws SQLException; 72 73 78 public byte[] getBytes() throws SQLException; 79 80 85 public Clob getClob() throws SQLException; 86 87 92 public Date getDate() throws SQLException; 93 94 100 public Date getDate(Calendar cal) throws SQLException; 101 102 107 public double getDouble() throws SQLException; 108 109 114 public float getFloat() throws SQLException; 115 116 121 public int getInt() throws SQLException; 122 123 128 public long getLong() throws SQLException; 129 130 135 public Object getObject() throws SQLException; 136 137 143 public Object getObject(Map map) throws SQLException; 144 145 150 public Ref getRef() throws SQLException; 151 152 157 public short getShort() throws SQLException; 158 159 164 public String getString() throws SQLException; 165 166 171 public Time getTime() throws SQLException; 172 173 179 public Time getTime(Calendar cal) throws SQLException; 180 181 186 public Timestamp getTimestamp() throws SQLException; 187 188 194 public Timestamp getTimestamp(Calendar cal) throws SQLException; 195 196 201 public URL getURL() throws SQLException; 202 203 208 public boolean wasNull() throws SQLException; 209 210 214 public ResultSet getResultSet(); 215 216 } 217 | Popular Tags |