Lines Matching refs:column

191 Reference< XInputStream > SAL_CALL OResultSet::getBinaryStream(sal_Int32 column)  in getBinaryStream()  argument
197 checkColumnIndex(column); in getBinaryStream()
206 Reference< XInputStream > SAL_CALL OResultSet::getCharacterStream(sal_Int32 column) in getCharacterStream() argument
212 checkColumnIndex(column); in getCharacterStream()
221 sal_Bool SAL_CALL OResultSet::getBoolean(sal_Int32 column) in getBoolean() argument
228 checkColumnIndex(column); in getBoolean()
230 return m_result->getBoolean(column)? sal_True:sal_False; in getBoolean()
236 OUString str = getString(column); in getBoolean()
252 sal_Int8 SAL_CALL OResultSet::getByte(sal_Int32 column) in getByte() argument
259 checkColumnIndex(column); in getByte()
261 return m_result->getInt(column); in getByte()
271 Sequence< sal_Int8 > SAL_CALL OResultSet::getBytes(sal_Int32 column) in getBytes() argument
280 sql::SQLString val = m_result->getString(column); in getBytes()
291 Date SAL_CALL OResultSet::getDate(sal_Int32 column) in getDate() argument
297 checkColumnIndex(column); in getDate()
301 OUString dateString = getString(column); in getDate()
330 double SAL_CALL OResultSet::getDouble(sal_Int32 column) in getDouble() argument
337 checkColumnIndex(column); in getDouble()
339 return m_result->getDouble(column); in getDouble()
349 float SAL_CALL OResultSet::getFloat(sal_Int32 column) in getFloat() argument
356 checkColumnIndex(column); in getFloat()
358 return m_result->getDouble(column); in getFloat()
368 sal_Int32 SAL_CALL OResultSet::getInt(sal_Int32 column) in getInt() argument
375 checkColumnIndex(column); in getInt()
377 return m_result->getInt(column); in getInt()
405 sal_Int64 SAL_CALL OResultSet::getLong(sal_Int32 column) in getLong() argument
412 checkColumnIndex(column); in getLong()
414 return m_result->getInt64(column); in getLong()
445 Reference< XArray > SAL_CALL OResultSet::getArray(sal_Int32 column) in getArray() argument
451 checkColumnIndex(column); in getArray()
460 Reference< XClob > SAL_CALL OResultSet::getClob(sal_Int32 column) in getClob() argument
466 checkColumnIndex(column); in getClob()
475 Reference< XBlob > SAL_CALL OResultSet::getBlob(sal_Int32 column) in getBlob() argument
481 checkColumnIndex(column); in getBlob()
490 Reference< XRef > SAL_CALL OResultSet::getRef(sal_Int32 column) in getRef() argument
496 checkColumnIndex(column); in getRef()
505 Any SAL_CALL OResultSet::getObject(sal_Int32 column, const Reference< XNameAccess >& /* typeMap */) in getObject() argument
511 checkColumnIndex(column); in getObject()
522 sal_Int16 SAL_CALL OResultSet::getShort(sal_Int32 column) in getShort() argument
530 return (sal_Int16) m_result->getInt(column); in getShort()
540 OUString SAL_CALL OResultSet::getString(sal_Int32 column) in getString() argument
547 checkColumnIndex(column); in getString()
550 sql::SQLString val = m_result->getString(column); in getString()
565 Time SAL_CALL OResultSet::getTime(sal_Int32 column) in getTime() argument
572 checkColumnIndex(column); in getTime()
574 OUString timeString = getString(column); in getTime()
602 DateTime SAL_CALL OResultSet::getTimestamp(sal_Int32 column) in getTimestamp() argument
609 checkColumnIndex(column); in getTimestamp()
611 Date d = getDate(column); in getTimestamp()
612 Time t = getTime(column); in getTimestamp()
1034 void SAL_CALL OResultSet::updateNull(sal_Int32 column) in updateNull() argument
1040 checkColumnIndex(column); in updateNull()
1047 void SAL_CALL OResultSet::updateBoolean(sal_Int32 column, sal_Bool /* x */) in updateBoolean() argument
1053 checkColumnIndex(column); in updateBoolean()
1060 void SAL_CALL OResultSet::updateByte(sal_Int32 column, sal_Int8 /* x */) in updateByte() argument
1066 checkColumnIndex(column); in updateByte()
1073 void SAL_CALL OResultSet::updateShort(sal_Int32 column, sal_Int16 /* x */) in updateShort() argument
1079 checkColumnIndex(column); in updateShort()
1086 void SAL_CALL OResultSet::updateInt(sal_Int32 column, sal_Int32 /* x */) in updateInt() argument
1092 checkColumnIndex(column); in updateInt()
1099 void SAL_CALL OResultSet::updateLong(sal_Int32 column, sal_Int64 /* x */) in updateLong() argument
1105 checkColumnIndex(column); in updateLong()
1112 void SAL_CALL OResultSet::updateFloat(sal_Int32 column, float /* x */) in updateFloat() argument
1118 checkColumnIndex(column); in updateFloat()
1125 void SAL_CALL OResultSet::updateDouble(sal_Int32 column, double /* x */) in updateDouble() argument
1131 checkColumnIndex(column); in updateDouble()
1138 void SAL_CALL OResultSet::updateString(sal_Int32 column, const OUString& /* x */) in updateString() argument
1144 checkColumnIndex(column); in updateString()
1151 void SAL_CALL OResultSet::updateBytes(sal_Int32 column, const Sequence< sal_Int8 >& /* x */) in updateBytes() argument
1157 checkColumnIndex(column); in updateBytes()
1164 void SAL_CALL OResultSet::updateDate(sal_Int32 column, const Date& /* x */) in updateDate() argument
1170 checkColumnIndex(column); in updateDate()
1177 void SAL_CALL OResultSet::updateTime(sal_Int32 column, const Time& /* x */) in updateTime() argument
1183 checkColumnIndex(column); in updateTime()
1190 void SAL_CALL OResultSet::updateTimestamp(sal_Int32 column, const DateTime& /* x */) in updateTimestamp() argument
1196 checkColumnIndex(column); in updateTimestamp()
1203 void SAL_CALL OResultSet::updateBinaryStream(sal_Int32 column, const Reference< XInputStream >& /* … in updateBinaryStream() argument
1210 checkColumnIndex(column); in updateBinaryStream()
1217 void SAL_CALL OResultSet::updateCharacterStream(sal_Int32 column, const Reference< XInputStream >& … in updateCharacterStream() argument
1224 checkColumnIndex(column); in updateCharacterStream()
1243 void SAL_CALL OResultSet::updateObject(sal_Int32 column, const Any& /* x */) in updateObject() argument
1249 checkColumnIndex(column); in updateObject()
1256 void SAL_CALL OResultSet::updateNumericObject(sal_Int32 column, const Any& /* x */, sal_Int32 /* sc… in updateNumericObject() argument
1262 checkColumnIndex(column); in updateNumericObject()