Home
last modified time | relevance | path

Searched refs:_par0 (Results 1 – 22 of 22) sorted by relevance

/trunk/main/connectivity/source/drivers/jdbc/
H A DJStatement.cxx505 callVoidMethodWithIntArg("setQueryTimeOut",mID,_par0,true); in setQueryTimeOut()
513 m_aLogger.log( LogLevel::FINE, STR_LOG_SET_ESCAPE_PROCESSING, _par0 ); in setEscapeProcessing()
516 m_bEscapeProcessing = _par0; in setEscapeProcessing()
519 callVoidMethodWithBoolArg("setEscapeProcessing",mID,_par0,true); in setEscapeProcessing()
530 callVoidMethodWithIntArg("setMaxRows",mID,_par0,true); in setMaxRows()
538 m_nResultSetConcurrency = _par0; in setResultSetConcurrency()
548 m_nResultSetType = _par0; in setResultSetType()
561 callVoidMethodWithIntArg("setFetchDirection",mID,_par0,true); in setFetchDirection()
573 callVoidMethodWithIntArg("setFetchSize",mID,_par0,true); in setFetchSize()
583 callVoidMethodWithIntArg("setMaxFieldSize",mID,_par0,true); in setMaxFieldSize()
[all …]
H A DJBigDecimal.cxx47 java_math_BigDecimal::java_math_BigDecimal( const ::rtl::OUString& _par0 ): java_lang_Object( NULL,… in java_math_BigDecimal() argument
59 jstring str = convertwchar_tToJavaString(t.pEnv,_par0.replace(',','.')); in java_math_BigDecimal()
68 java_math_BigDecimal::java_math_BigDecimal( const double& _par0 ): java_lang_Object( NULL, (jobject… in java_math_BigDecimal() argument
79 tempObj = t.pEnv->NewObject( getMyClass(), mID, _par0 ); in java_math_BigDecimal()
H A DClass.cxx48 java_lang_Class * java_lang_Class::forName( const ::rtl::OUString& _par0 ) in forName() argument
54 ::rtl::OString sClassName = ::rtl::OUStringToOString(_par0, RTL_TEXTENCODING_JAVA_UTF8); in forName()
H A DTimestamp.cxx185 void java_sql_Timestamp::setNanos( sal_Int32 _par0 ) in setNanos() argument
188 callVoidMethodWithIntArg("setNanos",mID,_par0); in setNanos()
H A DResultSet.cxx940 void java_sql_ResultSet::setFetchDirection(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLExcept… in setFetchDirection() argument
944 callVoidMethodWithIntArg("setFetchDirection",mID,_par0,true); in setFetchDirection()
954 void java_sql_ResultSet::setFetchSize(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, … in setFetchSize() argument
958 callVoidMethodWithIntArg("setFetchSize",mID,_par0,true); in setFetchSize()
/trunk/main/connectivity/source/drivers/odbcbase/
H A DOStatement.cxx766 void OStatement_Base::setMaxRows(sal_Int32 _par0) in setMaxRows() argument
776 if(_par0 == ResultSetConcurrency::READ_ONLY) in setResultSetConcurrency()
786 void OStatement_Base::setResultSetType(sal_Int32 _par0) in setResultSetType() argument
795 switch(_par0) in setResultSetType()
858 if(_par0 == FetchDirection::FORWARD) in setFetchDirection()
863 else if(_par0 == FetchDirection::REVERSE) in setFetchDirection()
871 void OStatement_Base::setFetchSize(sal_Int32 _par0) in setFetchSize() argument
874 OSL_ENSURE(_par0>0,"Illegal fetch size!"); in setFetchSize()
875 if ( _par0 > 0 ) in setFetchSize()
881 m_pRowStatusArray = new SQLUSMALLINT[_par0]; in setFetchSize()
[all …]
H A DOResultSet.cxx1362 void OResultSet::setFetchDirection(sal_Int32 _par0) in setFetchDirection() argument
1364 OSL_ENSURE(_par0>0,"Illegal fetch direction!"); in setFetchDirection()
1365 if ( _par0 > 0 ) in setFetchDirection()
1367 N3SQLSetStmtAttr(m_aStatementHandle,SQL_ATTR_CURSOR_TYPE,(SQLPOINTER)_par0,SQL_IS_UINTEGER); in setFetchDirection()
1371 void OResultSet::setFetchSize(sal_Int32 _par0) in setFetchSize() argument
1373 OSL_ENSURE(_par0>0,"Illegal fetch size!"); in setFetchSize()
1374 if ( _par0 > 0 ) in setFetchSize()
1376 N3SQLSetStmtAttr(m_aStatementHandle,SQL_ATTR_ROW_ARRAY_SIZE,(SQLPOINTER)_par0,SQL_IS_UINTEGER); in setFetchSize()
1379 m_pRowStatusArray = new SQLUSMALLINT[_par0]; in setFetchSize()
/trunk/main/connectivity/source/inc/java/sql/
H A DJStatement.hxx76 …void setQueryTimeOut(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException…
77 …void setMaxFieldSize(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException…
78 …void setMaxRows(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLE…
79 …void setResultSetConcurrency(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com:…
80 …void setResultSetType(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException…
81 …void setFetchDirection(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException…
82 …void setFetchSize(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLE…
83 …void setCursorName(const ::rtl::OUString &_par0) throw(::com::sun::star::sdbc::SQLException, ::com…
84 …void setEscapeProcessing(sal_Bool _par0) throw(::com::sun::star::sdbc::SQLException, ::com::sun::s…
H A DResultSet.hxx78 …void setFetchDirection(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com::sun::st…
79 …void setFetchSize(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::u…
/trunk/main/connectivity/source/inc/odbc/
H A DOStatement.hxx97 void setQueryTimeOut(sal_Int32 _par0) ;
98 void setMaxFieldSize(sal_Int32 _par0) ;
99 void setMaxRows(sal_Int32 _par0) ;
100 void setFetchDirection(sal_Int32 _par0) ;
101 void setFetchSize(sal_Int32 _par0) ;
102 void setCursorName(const ::rtl::OUString &_par0);
105 virtual void setResultSetConcurrency(sal_Int32 _par0) ;
106 virtual void setResultSetType(sal_Int32 _par0) ;
H A DOResultSet.hxx159 void setFetchDirection(sal_Int32 _par0);
160 void setFetchSize(sal_Int32 _par0);
/trunk/main/connectivity/source/inc/ado/
H A DAStatement.hxx101 …void setQueryTimeOut(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com:…
102 …void setMaxFieldSize(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com:…
103 …void setMaxRows(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com:…
104 …void setResultSetConcurrency(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com:…
105 …void setResultSetType(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com:…
106 …void setFetchDirection(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com:…
107 …void setFetchSize(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com:…
108 …void setCursorName(const ::rtl::OUString &_par0) throw(::com::sun::star::sdbc::SQLException, ::com…
H A DADatabaseMetaDataResultSet.hxx92 …void setFetchDirection(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com::sun::st…
93 …void setFetchSize(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::u…
H A DAResultSet.hxx91 …void setFetchDirection(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com::sun::st…
92 …void setFetchSize(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::u…
/trunk/main/connectivity/source/drivers/ado/
H A DAStatement.cxx582 void OStatement_Base::setMaxRows(sal_Int32 _par0) throw(SQLException, RuntimeException) in setMaxRows() argument
587 m_nMaxRows = _par0; in setMaxRows()
590 void OStatement_Base::setResultSetConcurrency(sal_Int32 _par0) throw(SQLException, RuntimeException) in setResultSetConcurrency() argument
595 switch(_par0) in setResultSetConcurrency()
606 void OStatement_Base::setResultSetType(sal_Int32 _par0) throw(SQLException, RuntimeException) in setResultSetType() argument
612 switch(_par0) in setResultSetType()
633 void OStatement_Base::setFetchSize(sal_Int32 _par0) throw(SQLException, RuntimeException) in setFetchSize() argument
639 m_nFetchSize = _par0; in setFetchSize()
650 void OStatement_Base::setCursorName(const ::rtl::OUString &_par0) throw(SQLException, RuntimeExcept… in setCursorName() argument
655 m_Command.put_Name(_par0); in setCursorName()
H A DAResultSet.cxx1049 void OResultSet::setFetchSize(sal_Int32 _par0) in setFetchSize() argument
1052 m_pRecordSet->put_CacheSize(_par0); in setFetchSize()
H A DADatabaseMetaDataResultSet.cxx694 void ODatabaseMetaDataResultSet::setFetchSize(sal_Int32 _par0) in setFetchSize() argument
698 m_pRecordSet->put_CacheSize(_par0); in setFetchSize()
/trunk/main/connectivity/source/inc/java/math/
H A DBigDecimal.hxx42 java_math_BigDecimal( const ::rtl::OUString& _par0 );
43 java_math_BigDecimal( const double& _par0 );
/trunk/main/connectivity/source/inc/adabas/
H A DBPreparedStatement.hxx38 virtual void setResultSetConcurrency(sal_Int32 _par0) ;
39 virtual void setResultSetType(sal_Int32 _par0) ;
H A DBStatement.hxx43 virtual void setResultSetConcurrency(sal_Int32 _par0);
44 virtual void setResultSetType(sal_Int32 _par0) ;
/trunk/main/connectivity/source/inc/java/lang/
H A DClass.hxx43 static java_lang_Class * forName( const ::rtl::OUString &_par0 );
/trunk/main/connectivity/workben/skeleton/
H A DSResultSet.hxx100 …void setFetchDirection(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com::sun::st…
101 …void setFetchSize(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::u…

Completed in 130 milliseconds