Lines Matching refs:columnIndex

233 const ORowSetValue& OResultSet::getValue(sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLE…  in getValue()  argument
240 checkIndex(columnIndex ); in getValue()
243 m_bWasNull = (m_aSelectRow->get())[columnIndex]->getValue().isNull(); in getValue()
244 return *(m_aSelectRow->get())[columnIndex]; in getValue()
247 void OResultSet::checkIndex(sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException) in checkIndex() argument
250 if ( columnIndex <= 0 in checkIndex()
252 || columnIndex >= m_nColumnCount ) in checkIndex()
269 sal_Bool SAL_CALL OResultSet::getBoolean( sal_Int32 columnIndex ) throw(SQLException, RuntimeExcept… in getBoolean() argument
272 return getValue(columnIndex); in getBoolean()
276 sal_Int8 SAL_CALL OResultSet::getByte( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) in getByte() argument
279 return getValue(columnIndex); in getByte()
283 Sequence< sal_Int8 > SAL_CALL OResultSet::getBytes( sal_Int32 columnIndex ) throw(SQLException, Run… in getBytes() argument
286 return getValue(columnIndex); in getBytes()
290 ::com::sun::star::util::Date SAL_CALL OResultSet::getDate( sal_Int32 columnIndex ) throw(SQLExcepti… in getDate() argument
293 return getValue(columnIndex); in getDate()
297 double SAL_CALL OResultSet::getDouble( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) in getDouble() argument
300 return getValue(columnIndex); in getDouble()
304 float SAL_CALL OResultSet::getFloat( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) in getFloat() argument
307 return getValue(columnIndex); in getFloat()
311 sal_Int32 SAL_CALL OResultSet::getInt( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) in getInt() argument
314 return getValue(columnIndex); in getInt()
330 sal_Int64 SAL_CALL OResultSet::getLong( sal_Int32 columnIndex ) throw(SQLException, RuntimeExceptio… in getLong() argument
333 return getValue(columnIndex); in getLong()
377 Any SAL_CALL OResultSet::getObject( sal_Int32 columnIndex, const Reference< ::com::sun::star::conta… in getObject() argument
380 return getValue(columnIndex).makeAny(); in getObject()
384 sal_Int16 SAL_CALL OResultSet::getShort( sal_Int32 columnIndex ) throw(SQLException, RuntimeExcepti… in getShort() argument
387 return getValue(columnIndex); in getShort()
390 ::rtl::OUString SAL_CALL OResultSet::getString( sal_Int32 columnIndex ) throw(SQLException, Runtime… in getString() argument
393 return getValue(columnIndex); in getString()
396 ::com::sun::star::util::Time SAL_CALL OResultSet::getTime( sal_Int32 columnIndex ) throw(SQLExcepti… in getTime() argument
399 return getValue(columnIndex); in getTime()
402 ::com::sun::star::util::DateTime SAL_CALL OResultSet::getTimestamp( sal_Int32 columnIndex ) throw(S… in getTimestamp() argument
405 return getValue(columnIndex); in getTimestamp()
744 void OResultSet::updateValue(sal_Int32 columnIndex ,const ORowSetValue& x) throw(SQLException, Runt… in updateValue() argument
750 checkIndex(columnIndex ); in updateValue()
751 columnIndex = mapColumn(columnIndex); in updateValue()
753 (m_aInsertRow->get())[columnIndex]->setBound(sal_True); in updateValue()
754 *(m_aInsertRow->get())[columnIndex] = x; in updateValue()
758 void SAL_CALL OResultSet::updateNull( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) in updateNull() argument
762 updateValue(columnIndex,aEmpty); in updateNull()
766 void SAL_CALL OResultSet::updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(SQLException, Ru… in updateBoolean() argument
769 updateValue(columnIndex,x); in updateBoolean()
772 void SAL_CALL OResultSet::updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(SQLException, Runti… in updateByte() argument
775 updateValue(columnIndex,x); in updateByte()
779 void SAL_CALL OResultSet::updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(SQLException, Run… in updateShort() argument
782 updateValue(columnIndex,x); in updateShort()
785 void SAL_CALL OResultSet::updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(SQLException, Runti… in updateInt() argument
788 updateValue(columnIndex,x); in updateInt()
797 void SAL_CALL OResultSet::updateFloat( sal_Int32 columnIndex, float x ) throw(SQLException, Runtime… in updateFloat() argument
800 updateValue(columnIndex,x); in updateFloat()
804 void SAL_CALL OResultSet::updateDouble( sal_Int32 columnIndex, double x ) throw(SQLException, Runti… in updateDouble() argument
807 updateValue(columnIndex,x); in updateDouble()
810 void SAL_CALL OResultSet::updateString( sal_Int32 columnIndex, const ::rtl::OUString& x ) throw(SQL… in updateString() argument
813 updateValue(columnIndex,x); in updateString()
816 void SAL_CALL OResultSet::updateBytes( sal_Int32 columnIndex, const Sequence< sal_Int8 >& x ) throw… in updateBytes() argument
819 updateValue(columnIndex,x); in updateBytes()
822 void SAL_CALL OResultSet::updateDate( sal_Int32 columnIndex, const ::com::sun::star::util::Date& x … in updateDate() argument
825 updateValue(columnIndex,x); in updateDate()
829 void SAL_CALL OResultSet::updateTime( sal_Int32 columnIndex, const ::com::sun::star::util::Time& x … in updateTime() argument
832 updateValue(columnIndex,x); in updateTime()
836 void SAL_CALL OResultSet::updateTimestamp( sal_Int32 columnIndex, const ::com::sun::star::util::Dat… in updateTimestamp() argument
839 updateValue(columnIndex,x); in updateTimestamp()
843 void SAL_CALL OResultSet::updateBinaryStream( sal_Int32 columnIndex, const Reference< ::com::sun::s… in updateBinaryStream() argument
854 updateValue(columnIndex,aSeq); in updateBinaryStream()
857 void SAL_CALL OResultSet::updateCharacterStream( sal_Int32 columnIndex, const Reference< ::com::sun… in updateCharacterStream() argument
860 updateBinaryStream(columnIndex,x,length); in updateCharacterStream()
870 void SAL_CALL OResultSet::updateObject( sal_Int32 columnIndex, const Any& x ) throw(SQLException, R… in updateObject() argument
873 if (!::dbtools::implUpdateObject(this, columnIndex, x)) in updateObject()
878 void SAL_CALL OResultSet::updateNumericObject( sal_Int32 columnIndex, const Any& x, sal_Int32 /*sca… in updateNumericObject() argument
881 if (!::dbtools::implUpdateObject(this, columnIndex, x)) in updateNumericObject()