Lines Matching refs:parameterIndex

2499 ORowSetValue& ORowSet::getParameterStorage(sal_Int32 parameterIndex)  in getParameterStorage()  argument
2502 if ( parameterIndex < 1 ) in getParameterStorage()
2505 if ( m_aParametersSet.size() < (size_t)parameterIndex ) in getParameterStorage()
2506 m_aParametersSet.resize( parameterIndex ,false); in getParameterStorage()
2507 m_aParametersSet[parameterIndex - 1] = true; in getParameterStorage()
2509 if ( m_aParametersSet.size() < (size_t)parameterIndex ) in getParameterStorage()
2510 m_aParametersSet.resize( parameterIndex ,false); in getParameterStorage()
2511 m_aParametersSet[parameterIndex - 1] = true; in getParameterStorage()
2521 if ( (size_t)parameterIndex > m_pParameters->size() ) in getParameterStorage()
2523 return (*m_pParameters)[ parameterIndex - 1 ]; in getParameterStorage()
2527 if ( m_aPrematureParamValues.get().size() < (size_t)parameterIndex ) in getParameterStorage()
2528 m_aPrematureParamValues.get().resize( parameterIndex ); in getParameterStorage()
2529 return m_aPrematureParamValues.get()[ parameterIndex - 1 ]; in getParameterStorage()
2533 void SAL_CALL ORowSet::setNull( sal_Int32 parameterIndex, sal_Int32 /*sqlType*/ ) throw(SQLExceptio… in setNull() argument
2537 getParameterStorage( parameterIndex ).setNull(); in setNull()
2540 void SAL_CALL ORowSet::setObjectNull( sal_Int32 parameterIndex, sal_Int32 sqlType, const ::rtl::OUS… in setObjectNull() argument
2542 setNull( parameterIndex, sqlType ); in setObjectNull()
2545 void ORowSet::setParameter(sal_Int32 parameterIndex, const ORowSetValue& x) in setParameter() argument
2549 getParameterStorage( parameterIndex ) = x; in setParameter()
2553 void SAL_CALL ORowSet::setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(SQLException, Runti… in setBoolean() argument
2555 setParameter(parameterIndex,x); in setBoolean()
2558 void SAL_CALL ORowSet::setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(SQLException, RuntimeE… in setByte() argument
2560 setParameter(parameterIndex,x); in setByte()
2563 void SAL_CALL ORowSet::setShort( sal_Int32 parameterIndex, sal_Int16 x ) throw(SQLException, Runtim… in setShort() argument
2565 setParameter(parameterIndex,x); in setShort()
2568 void SAL_CALL ORowSet::setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(SQLException, RuntimeE… in setInt() argument
2570 setParameter(parameterIndex,x); in setInt()
2573 void SAL_CALL ORowSet::setLong( sal_Int32 parameterIndex, sal_Int64 x ) throw(SQLException, Runtime… in setLong() argument
2575 setParameter(parameterIndex,x); in setLong()
2578 void SAL_CALL ORowSet::setFloat( sal_Int32 parameterIndex, float x ) throw(SQLException, RuntimeExc… in setFloat() argument
2580 setParameter(parameterIndex,x); in setFloat()
2583 void SAL_CALL ORowSet::setDouble( sal_Int32 parameterIndex, double x ) throw(SQLException, RuntimeE… in setDouble() argument
2585 setParameter(parameterIndex,x); in setDouble()
2588 void SAL_CALL ORowSet::setString( sal_Int32 parameterIndex, const ::rtl::OUString& x ) throw(SQLExc… in setString() argument
2590 setParameter(parameterIndex,x); in setString()
2593 void SAL_CALL ORowSet::setBytes( sal_Int32 parameterIndex, const Sequence< sal_Int8 >& x ) throw(SQ… in setBytes() argument
2595 setParameter(parameterIndex,x); in setBytes()
2598 void SAL_CALL ORowSet::setDate( sal_Int32 parameterIndex, const ::com::sun::star::util::Date& x ) t… in setDate() argument
2600 setParameter(parameterIndex,x); in setDate()
2603 void SAL_CALL ORowSet::setTime( sal_Int32 parameterIndex, const ::com::sun::star::util::Time& x ) t… in setTime() argument
2605 setParameter(parameterIndex,x); in setTime()
2608 void SAL_CALL ORowSet::setTimestamp( sal_Int32 parameterIndex, const ::com::sun::star::util::DateTi… in setTimestamp() argument
2610 setParameter(parameterIndex,x); in setTimestamp()
2613 void SAL_CALL ORowSet::setBinaryStream( sal_Int32 parameterIndex, const Reference< ::com::sun::star… in setBinaryStream() argument
2616 ORowSetValue& rParamValue( getParameterStorage( parameterIndex ) ); in setBinaryStream()
2631 void SAL_CALL ORowSet::setCharacterStream( sal_Int32 parameterIndex, const Reference< ::com::sun::s… in setCharacterStream() argument
2634 ORowSetValue& rParamValue( getParameterStorage( parameterIndex ) ); in setCharacterStream()
2653 void SAL_CALL ORowSet::setObject( sal_Int32 parameterIndex, const Any& x ) throw(SQLException, Runt… in setObject() argument
2655 if ( !::dbtools::implSetObject( this, parameterIndex, x ) ) in setObject()
2661 void SAL_CALL ORowSet::setObjectWithInfo( sal_Int32 parameterIndex, const Any& x, sal_Int32 targetS… in setObjectWithInfo() argument
2664 ORowSetValue& rParamValue( getParameterStorage( parameterIndex ) ); in setObjectWithInfo()
2665 setObject( parameterIndex, x ); in setObjectWithInfo()