Lines Matching refs:SQLExceptionInfo
52 SQLExceptionInfo::SQLExceptionInfo() in SQLExceptionInfo() function in dbtools::SQLExceptionInfo
58 SQLExceptionInfo::SQLExceptionInfo(const ::com::sun::star::sdbc::SQLException& _rError) in SQLExceptionInfo() function in dbtools::SQLExceptionInfo
65 SQLExceptionInfo::SQLExceptionInfo(const ::com::sun::star::sdbc::SQLWarning& _rError) in SQLExceptionInfo() function in dbtools::SQLExceptionInfo
72 SQLExceptionInfo::SQLExceptionInfo(const ::com::sun::star::sdb::SQLContext& _rError) in SQLExceptionInfo() function in dbtools::SQLExceptionInfo
79 SQLExceptionInfo::SQLExceptionInfo( const ::rtl::OUString& _rSimpleErrorMessage ) in SQLExceptionInfo() function in dbtools::SQLExceptionInfo
88 SQLExceptionInfo::SQLExceptionInfo(const SQLExceptionInfo& _rCopySource) in SQLExceptionInfo() function in dbtools::SQLExceptionInfo
95 const SQLExceptionInfo& SQLExceptionInfo::operator=(const ::com::sun::star::sdbc::SQLException& _rE… in operator =()
103 const SQLExceptionInfo& SQLExceptionInfo::operator=(const ::com::sun::star::sdbc::SQLWarning& _rErr… in operator =()
111 const SQLExceptionInfo& SQLExceptionInfo::operator=(const ::com::sun::star::sdb::SQLContext& _rErro… in operator =()
119 const SQLExceptionInfo& SQLExceptionInfo::operator=(const ::com::sun::star::sdb::SQLErrorEvent& _rE… in operator =()
127 const SQLExceptionInfo& SQLExceptionInfo::operator=(const ::com::sun::star::uno::Any& _rCaughtSQLEx… in operator =()
135 SQLExceptionInfo::SQLExceptionInfo(const ::com::sun::star::sdb::SQLErrorEvent& _rError) in SQLExceptionInfo() function in dbtools::SQLExceptionInfo
142 SQLExceptionInfo::SQLExceptionInfo(const staruno::Any& _rError) in SQLExceptionInfo() function in dbtools::SQLExceptionInfo
154 void SQLExceptionInfo::implDetermineType() in implDetermineType()
176 sal_Bool SQLExceptionInfo::isKindOf(TYPE _eType) const in isKindOf()
193 SQLExceptionInfo::operator const ::com::sun::star::sdbc::SQLException*() const
200 SQLExceptionInfo::operator const ::com::sun::star::sdbc::SQLWarning*() const
207 SQLExceptionInfo::operator const ::com::sun::star::sdb::SQLContext*() const
214 void SQLExceptionInfo::prepend( const ::rtl::OUString& _rErrorMessage, const sal_Char* _pAsciiSQLSt… in prepend()
227 void SQLExceptionInfo::append( TYPE _eType, const ::rtl::OUString& _rErrorMessage, const sal_Char* … in append()
273 void SQLExceptionInfo::doThrow() in doThrow()
285 SQLExceptionIteratorHelper::SQLExceptionIteratorHelper( const SQLExceptionInfo& _rChainStart ) in SQLExceptionIteratorHelper()
287 ,m_eCurrentType( SQLExceptionInfo::UNDEFINED ) in SQLExceptionIteratorHelper()
299 ,m_eCurrentType( SQLExceptionInfo::SQL_EXCEPTION ) in SQLExceptionIteratorHelper()
306 ,m_eCurrentType( SQLExceptionInfo::SQL_WARNING ) in SQLExceptionIteratorHelper()
313 ,m_eCurrentType( SQLExceptionInfo::SQL_CONTEXT ) in SQLExceptionIteratorHelper()
318 void SQLExceptionIteratorHelper::current( SQLExceptionInfo& _out_rInfo ) const in current()
322 case SQLExceptionInfo::SQL_EXCEPTION: in current()
326 case SQLExceptionInfo::SQL_WARNING: in current()
330 case SQLExceptionInfo::SQL_CONTEXT: in current()
357 m_eCurrentType = SQLExceptionInfo::UNDEFINED; in next()
367 m_eCurrentType = SQLExceptionInfo::SQL_CONTEXT; in next()
374 m_eCurrentType = SQLExceptionInfo::SQL_WARNING; in next()
379 m_eCurrentType = SQLExceptionInfo::SQL_EXCEPTION; in next()
384 void SQLExceptionIteratorHelper::next( SQLExceptionInfo& _out_rInfo ) in next()