Lines Matching refs:in

8  * "License"); you may not use this file except in compliance
13 * Unless required by applicable law or agreed to in writing,
62 /** is used to access data which is collected in a row.
84 /** gets the value of a column in the current row as a string.
92 string getString([in]long columnIndex) raises (SQLException);
95 /** gets the value of a column in the current row as boolean.
103 boolean getBoolean([in]long columnIndex) raises (SQLException);
106 /** get the value of a column in the current row as a byte.
114 byte getByte([in]long columnIndex) raises (SQLException);
117 /** gets the value of a column in the current row as a short.
125 short getShort([in]long columnIndex) raises (SQLException);
128 /** get the value of a column in the current row as an integer.
136 long getInt([in]long columnIndex) raises (SQLException);
139 /** get the value of a column in the current row as a long.
147 hyper getLong([in]long columnIndex) raises (SQLException);
150 /** gets the value of a column in the current row as a float.
158 float getFloat([in]long columnIndex) raises (SQLException);
161 /** gets the value of a column in the current row as a double.
169 double getDouble([in]long columnIndex) raises (SQLException);
172 /** gets the value of a column in the current row as a byte array.
181 sequence<byte> getBytes([in]long columnIndex) raises (SQLException);
184 /** gets the value of a column in the current row as a date object.
192 com::sun::star::util::Date getDate([in]long columnIndex)
196 /** gets the value of a column in the current row as a time object.
204 com::sun::star::util::Time getTime([in]long columnIndex)
208 /** gets the value of a column in the current row as a datetime object.
216 com::sun::star::util::DateTime getTimestamp([in]long columnIndex)
220 /** gets the value of a column in the current row as a stream of
221 uninterpreted bytes. The value can then be read in chunks from the
227 <b>Note:</b> All the data in the returned stream must be
242 com::sun::star::io::XInputStream getBinaryStream([in]long columnIndex)
246 /** gets the value of a column in the current row as a stream of
247 uninterpreted bytes. The value can then be read in chunks from the
253 <b>Note:</b> All the data in the returned stream must be
268 com::sun::star::io::XInputStream getCharacterStream([in]long columnIndex)
272 /** returns the value of a column in the current row as an object.
286 any getObject([in]long columnIndex,
287 [in]com::sun::star::container::XNameAccess typeMap)
299 XRef getRef([in]long columnIndex) raises (SQLException);
302 /** gets a BLOB value in the current row.
310 XBlob getBlob([in]long columnIndex) raises (SQLException);
313 /** gets a CLOB value in the current row of this
323 XClob getClob([in]long columnIndex) raises (SQLException);
336 XArray getArray([in]long columnIndex) raises (SQLException);