Lines Matching refs:columnIndex

173 …ar::io::XInputStream > SAL_CALL OResultSet::getBinaryStream( sal_Int32 columnIndex ) throw(SQLExce…  in getBinaryStream()  argument
178 WpADOField aField = ADOS::getField(m_pRecordSet,columnIndex); in getBinaryStream()
219 OLEVariant OResultSet::getValue(sal_Int32 columnIndex ) throw(SQLException, RuntimeException) in getValue() argument
224 WpADOField aField = ADOS::getField(m_pRecordSet,columnIndex); in getValue()
229 sal_Bool SAL_CALL OResultSet::getBoolean( sal_Int32 columnIndex ) throw(SQLException, RuntimeExcept… in getBoolean() argument
231 return getValue(columnIndex); in getBoolean()
235 sal_Int8 SAL_CALL OResultSet::getByte( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) in getByte() argument
237 return getValue(columnIndex); in getByte()
241 Sequence< sal_Int8 > SAL_CALL OResultSet::getBytes( sal_Int32 columnIndex ) throw(SQLException, Run… in getBytes() argument
243 return getValue(columnIndex); in getBytes()
247 ::com::sun::star::util::Date SAL_CALL OResultSet::getDate( sal_Int32 columnIndex ) throw(SQLExcepti… in getDate() argument
249 return getValue(columnIndex); in getDate()
253 double SAL_CALL OResultSet::getDouble( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) in getDouble() argument
255 return getValue(columnIndex); in getDouble()
259 float SAL_CALL OResultSet::getFloat( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) in getFloat() argument
261 return getValue(columnIndex); in getFloat()
265 sal_Int32 SAL_CALL OResultSet::getInt( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) in getInt() argument
267 return getValue(columnIndex); in getInt()
330 Any SAL_CALL OResultSet::getObject( sal_Int32 columnIndex, const Reference< ::com::sun::star::conta… in getObject() argument
332 return getValue(columnIndex).makeAny(); in getObject()
336 sal_Int16 SAL_CALL OResultSet::getShort( sal_Int32 columnIndex ) throw(SQLException, RuntimeExcepti… in getShort() argument
338 return getValue(columnIndex); in getShort()
342 ::rtl::OUString SAL_CALL OResultSet::getString( sal_Int32 columnIndex ) throw(SQLException, Runtime… in getString() argument
344 return getValue(columnIndex); in getString()
350 ::com::sun::star::util::Time SAL_CALL OResultSet::getTime( sal_Int32 columnIndex ) throw(SQLExcepti… in getTime() argument
352 return getValue(columnIndex); in getTime()
357 ::com::sun::star::util::DateTime SAL_CALL OResultSet::getTimestamp( sal_Int32 columnIndex ) throw(S… in getTimestamp() argument
359 return getValue(columnIndex); in getTimestamp()
702 void OResultSet::updateValue(sal_Int32 columnIndex,const OLEVariant& x) in updateValue() argument
707 WpADOField aField = ADOS::getField(m_pRecordSet,columnIndex); in updateValue()
711 void SAL_CALL OResultSet::updateNull( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) in updateNull() argument
715 updateValue(columnIndex,x); in updateNull()
719 void SAL_CALL OResultSet::updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(SQLException, Ru… in updateBoolean() argument
721 updateValue(columnIndex,x); in updateBoolean()
724 void SAL_CALL OResultSet::updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(SQLException, Runti… in updateByte() argument
726 updateValue(columnIndex,x); in updateByte()
730 void SAL_CALL OResultSet::updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(SQLException, Run… in updateShort() argument
732 updateValue(columnIndex,x); in updateShort()
735 void SAL_CALL OResultSet::updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(SQLException, Runti… in updateInt() argument
737 updateValue(columnIndex,x); in updateInt()
740 void SAL_CALL OResultSet::updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(SQLException, Runt… in updateLong() argument
742 updateValue(columnIndex,x); in updateLong()
745 void SAL_CALL OResultSet::updateFloat( sal_Int32 columnIndex, float x ) throw(SQLException, Runtime… in updateFloat() argument
747 updateValue(columnIndex,x); in updateFloat()
751 void SAL_CALL OResultSet::updateDouble( sal_Int32 columnIndex, double x ) throw(SQLException, Runti… in updateDouble() argument
753 updateValue(columnIndex,x); in updateDouble()
756 void SAL_CALL OResultSet::updateString( sal_Int32 columnIndex, const ::rtl::OUString& x ) throw(SQL… in updateString() argument
758 updateValue(columnIndex,x); in updateString()
761 void SAL_CALL OResultSet::updateBytes( sal_Int32 columnIndex, const Sequence< sal_Int8 >& x ) throw… in updateBytes() argument
763 updateValue(columnIndex,x); in updateBytes()
766 void SAL_CALL OResultSet::updateDate( sal_Int32 columnIndex, const ::com::sun::star::util::Date& x … in updateDate() argument
768 updateValue(columnIndex,x); in updateDate()
772 void SAL_CALL OResultSet::updateTime( sal_Int32 columnIndex, const ::com::sun::star::util::Time& x … in updateTime() argument
774 updateValue(columnIndex,x); in updateTime()
778 void SAL_CALL OResultSet::updateTimestamp( sal_Int32 columnIndex, const ::com::sun::star::util::Dat… in updateTimestamp() argument
780 updateValue(columnIndex,x); in updateTimestamp()
784 void SAL_CALL OResultSet::updateBinaryStream( sal_Int32 columnIndex, const Reference< ::com::sun::s… in updateBinaryStream() argument
791 updateBytes(columnIndex,aSeq); in updateBinaryStream()
794 void SAL_CALL OResultSet::updateCharacterStream( sal_Int32 columnIndex, const Reference< ::com::sun… in updateCharacterStream() argument
801 updateBytes(columnIndex,aSeq); in updateCharacterStream()
813 void SAL_CALL OResultSet::updateObject( sal_Int32 columnIndex, const Any& x ) throw(SQLException, R… in updateObject() argument
815 if (!::dbtools::implUpdateObject(this, columnIndex, x)) in updateObject()
820 void SAL_CALL OResultSet::updateNumericObject( sal_Int32 columnIndex, const Any& x, sal_Int32 /*sca… in updateNumericObject() argument
822 if (!::dbtools::implUpdateObject(this, columnIndex, x)) in updateNumericObject()