Lines Matching refs:columnIndex

153 …XInputStream > SAL_CALL java_sql_ResultSet::getBinaryStream( sal_Int32 columnIndex ) throw(SQLExce…  in getBinaryStream()  argument
158 … callObjectMethodWithIntArg(t.pEnv,"getBinaryStream","(I)Ljava/io/InputStream;", mID, columnIndex); in getBinaryStream()
164 …putStream > SAL_CALL java_sql_ResultSet::getCharacterStream( sal_Int32 columnIndex ) throw(SQLExce… in getCharacterStream() argument
169 … = callObjectMethodWithIntArg(t.pEnv,"getCharacterStream","(I)Ljava/io/Reader;", mID, columnIndex); in getCharacterStream()
176 sal_Bool SAL_CALL java_sql_ResultSet::getBoolean( sal_Int32 columnIndex ) throw(SQLException, Runti… in getBoolean() argument
180 return callBooleanMethodWithIntArg( "getBoolean", mID,columnIndex ); in getBoolean()
184 sal_Int8 SAL_CALL java_sql_ResultSet::getByte( sal_Int32 columnIndex ) throw(SQLException, RuntimeE… in getByte() argument
189 return callMethodWithIntArg<jbyte>(pCallMethod,"getByte","(I)B",mID,columnIndex); in getByte()
193 Sequence< sal_Int8 > SAL_CALL java_sql_ResultSet::getBytes( sal_Int32 columnIndex ) throw(SQLExcept… in getBytes() argument
199 …yteArray out = (jbyteArray)callObjectMethodWithIntArg(t.pEnv,"getBytes","(I)[B", mID, columnIndex); in getBytes()
211 ::com::sun::star::util::Date SAL_CALL java_sql_ResultSet::getDate( sal_Int32 columnIndex ) throw(SQ… in getDate() argument
216 … jobject out = callObjectMethodWithIntArg(t.pEnv,"getDate","(I)Ljava/sql/Date;", mID, columnIndex); in getDate()
222 double SAL_CALL java_sql_ResultSet::getDouble( sal_Int32 columnIndex ) throw(SQLException, RuntimeE… in getDouble() argument
227 return callMethodWithIntArg<double>(pCallMethod,"getDouble","(I)D",mID,columnIndex); in getDouble()
231 float SAL_CALL java_sql_ResultSet::getFloat( sal_Int32 columnIndex ) throw(SQLException, RuntimeExc… in getFloat() argument
236 return callMethodWithIntArg<jfloat>(pCallMethod,"getFloat","(I)F",mID,columnIndex); in getFloat()
240 sal_Int32 SAL_CALL java_sql_ResultSet::getInt( sal_Int32 columnIndex ) throw(SQLException, RuntimeE… in getInt() argument
244 return callIntMethodWithIntArg("getInt",mID,columnIndex); in getInt()
256 sal_Int64 SAL_CALL java_sql_ResultSet::getLong( sal_Int32 columnIndex ) throw(SQLException, Runtime… in getLong() argument
261 return callMethodWithIntArg<jlong>(pCallMethod,"getLong","(I)J",mID,columnIndex); in getLong()
275 Reference< XArray > SAL_CALL java_sql_ResultSet::getArray( sal_Int32 columnIndex ) throw(SQLExcepti… in getArray() argument
280 …object out = callObjectMethodWithIntArg(t.pEnv,"getArray","(I)Ljava/sql/Array;", mID, columnIndex); in getArray()
287 Reference< XClob > SAL_CALL java_sql_ResultSet::getClob( sal_Int32 columnIndex ) throw(SQLException… in getClob() argument
292 … jobject out = callObjectMethodWithIntArg(t.pEnv,"getClob","(I)Ljava/sql/Clob;", mID, columnIndex); in getClob()
297 Reference< XBlob > SAL_CALL java_sql_ResultSet::getBlob( sal_Int32 columnIndex ) throw(SQLException… in getBlob() argument
302 … jobject out = callObjectMethodWithIntArg(t.pEnv,"getBlob","(I)Ljava/sql/Blob;", mID, columnIndex); in getBlob()
308 Reference< XRef > SAL_CALL java_sql_ResultSet::getRef( sal_Int32 columnIndex ) throw(SQLException, … in getRef() argument
313 jobject out = callObjectMethodWithIntArg(t.pEnv,"getRef","(I)Ljava/sql/Ref;", mID, columnIndex); in getRef()
320 Any SAL_CALL java_sql_ResultSet::getObject( sal_Int32 columnIndex, const Reference< ::com::sun::sta… in getObject() argument
329 args[0].i = (sal_Int32)columnIndex; in getObject()
382 sal_Int16 SAL_CALL java_sql_ResultSet::getShort( sal_Int32 columnIndex ) throw(SQLException, Runtim… in getShort() argument
387 return callMethodWithIntArg<jshort>(pCallMethod,"getShort","(I)S",mID,columnIndex); in getShort()
392 ::rtl::OUString SAL_CALL java_sql_ResultSet::getString( sal_Int32 columnIndex ) throw(SQLException,… in getString() argument
396 return callStringMethodWithIntArg("getString",mID,columnIndex); in getString()
401 ::com::sun::star::util::Time SAL_CALL java_sql_ResultSet::getTime( sal_Int32 columnIndex ) throw(SQ… in getTime() argument
406 … jobject out = callObjectMethodWithIntArg(t.pEnv,"getTime","(I)Ljava/sql/Time;", mID, columnIndex); in getTime()
413 ::com::sun::star::util::DateTime SAL_CALL java_sql_ResultSet::getTimestamp( sal_Int32 columnIndex )… in getTimestamp() argument
418 …ut = callObjectMethodWithIntArg(t.pEnv,"getTimestamp","(I)Ljava/sql/Timestamp;", mID, columnIndex); in getTimestamp()
636 void SAL_CALL java_sql_ResultSet::updateNull( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc:… in updateNull() argument
640 callVoidMethodWithIntArg("updateNull",mID,columnIndex); in updateNull()
644 void SAL_CALL java_sql_ResultSet::updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(::com::s… in updateBoolean() argument
648 callVoidMethod("updateBoolean", "(IZ)V", mID, columnIndex, x); in updateBoolean()
651 void SAL_CALL java_sql_ResultSet::updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(::com::sun:… in updateByte() argument
655 callVoidMethod("updateByte", "(IB)V", mID, columnIndex, x); in updateByte()
659 void SAL_CALL java_sql_ResultSet::updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(::com::su… in updateShort() argument
663 callVoidMethod("updateShort", "(IS)V", mID, columnIndex, x); in updateShort()
666 void SAL_CALL java_sql_ResultSet::updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(::com::sun:… in updateInt() argument
670 callVoidMethod("updateInt", "(II)V", mID, columnIndex, x); in updateInt()
673 void SAL_CALL java_sql_ResultSet::updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(::com::sun… in updateLong() argument
677 callVoidMethod("updateLong", "(IJ)V", mID, columnIndex, x); in updateLong()
682 void SAL_CALL java_sql_ResultSet::updateFloat( sal_Int32 columnIndex, float x ) throw(::com::sun::s… in updateFloat() argument
686 callVoidMethod("updateFloat", "(IF)V", mID, columnIndex, x); in updateFloat()
690 void SAL_CALL java_sql_ResultSet::updateDouble( sal_Int32 columnIndex, double x ) throw(::com::sun:… in updateDouble() argument
694 callVoidMethod("updateDouble", "(ID)V", mID, columnIndex, x); in updateDouble()
698 void SAL_CALL java_sql_ResultSet::updateString( sal_Int32 columnIndex, const ::rtl::OUString& x ) t… in updateString() argument
719 t.pEnv->CallVoidMethod( object, mID,columnIndex,str.get()); in updateString()
726 void SAL_CALL java_sql_ResultSet::updateBytes( sal_Int32 columnIndex, const ::com::sun::star::uno::… in updateBytes() argument
747 t.pEnv->CallVoidMethod( object, mID,columnIndex,aArray); in updateBytes()
755 void SAL_CALL java_sql_ResultSet::updateDate( sal_Int32 columnIndex, const ::com::sun::star::util::… in updateDate() argument
760 callVoidMethod("updateDate", "(ILjava/sql/Date;)V", mID, columnIndex, aD.getJavaObject()); in updateDate()
764 void SAL_CALL java_sql_ResultSet::updateTime( sal_Int32 columnIndex, const ::com::sun::star::util::… in updateTime() argument
769 callVoidMethod("updateTime", "(ILjava/sql/Time;)V", mID, columnIndex, aD.getJavaObject()); in updateTime()
773 void SAL_CALL java_sql_ResultSet::updateTimestamp( sal_Int32 columnIndex, const ::com::sun::star::u… in updateTimestamp() argument
778 …callVoidMethod("updateTimestamp", "(ILjava/sql/Timestamp;)V", mID, columnIndex, aD.getJavaObject()… in updateTimestamp()
782 void SAL_CALL java_sql_ResultSet::updateBinaryStream( sal_Int32 columnIndex, const ::com::sun::star… in updateBinaryStream() argument
803 t.pEnv->CallVoidMethod( object, mID, columnIndex,obj,length); in updateBinaryStream()
814 void SAL_CALL java_sql_ResultSet::updateCharacterStream( sal_Int32 columnIndex, const ::com::sun::s… in updateCharacterStream() argument
835 t.pEnv->CallVoidMethod( object, mID, columnIndex,obj,length); in updateCharacterStream()
846 void SAL_CALL java_sql_ResultSet::updateObject( sal_Int32 columnIndex, const ::com::sun::star::uno:… in updateObject() argument
849 if(!::dbtools::implUpdateObject(this,columnIndex,x)) in updateObject()
854 "$position$", ::rtl::OUString::valueOf(columnIndex) in updateObject()
861 void SAL_CALL java_sql_ResultSet::updateNumericObject( sal_Int32 columnIndex, const ::com::sun::sta… in updateNumericObject() argument
893 … t.pEnv->CallVoidMethod( object, mID, columnIndex,pBigDecimal->getJavaObject(),scale); in updateNumericObject()
900 updateObject( columnIndex,x); in updateNumericObject()