Lines Matching refs:i

146     public boolean absolute(int i) throws SQLException  in absolute()  argument
148 return m_rowSet.absolute(i); in absolute()
151 public boolean relative(int i) throws SQLException in relative() argument
153 return m_rowSet.relative(i); in relative()
192 public String getString(int i) throws SQLException in getString() argument
194 return m_row.getString(i); in getString()
197 public boolean getBoolean(int i) throws SQLException in getBoolean() argument
199 return m_row.getBoolean(i); in getBoolean()
202 public byte getByte(int i) throws SQLException in getByte() argument
204 return m_row.getByte(i); in getByte()
207 public short getShort(int i) throws SQLException in getShort() argument
209 return m_row.getShort(i); in getShort()
212 public int getInt(int i) throws SQLException in getInt() argument
214 return m_row.getInt(i); in getInt()
217 public long getLong(int i) throws SQLException in getLong() argument
219 return m_row.getLong(i); in getLong()
222 public float getFloat(int i) throws SQLException in getFloat() argument
224 return m_row.getFloat(i); in getFloat()
227 public double getDouble(int i) throws SQLException in getDouble() argument
229 return m_row.getDouble(i); in getDouble()
232 public byte[] getBytes(int i) throws SQLException in getBytes() argument
234 return m_row.getBytes(i); in getBytes()
237 public Date getDate(int i) throws SQLException in getDate() argument
239 return m_row.getDate(i); in getDate()
242 public Time getTime(int i) throws SQLException in getTime() argument
244 return m_row.getTime(i); in getTime()
247 public DateTime getTimestamp(int i) throws SQLException in getTimestamp() argument
249 return m_row.getTimestamp(i); in getTimestamp()
252 public XInputStream getBinaryStream(int i) throws SQLException in getBinaryStream() argument
254 return m_row.getBinaryStream(i); in getBinaryStream()
257 public XInputStream getCharacterStream(int i) throws SQLException in getCharacterStream() argument
259 return m_row.getCharacterStream(i); in getCharacterStream()
262 public Object getObject(int i, XNameAccess xNameAccess) throws SQLException in getObject() argument
264 return m_row.getObject(i, xNameAccess); in getObject()
267 public XRef getRef(int i) throws SQLException in getRef() argument
269 return m_row.getRef(i); in getRef()
272 public XBlob getBlob(int i) throws SQLException in getBlob() argument
274 return m_row.getBlob(i); in getBlob()
277 public XClob getClob(int i) throws SQLException in getClob() argument
279 return m_row.getClob(i); in getClob()
282 public XArray getArray(int i) throws SQLException in getArray() argument
284 return m_row.getArray(i); in getArray()