diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-12-13 15:23:25 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-12-13 15:23:25 +0000 |
commit | 714ecd9dce9e7c330b6c7d5b44552ec6207eb7b4 (patch) | |
tree | d7462779c858f7dcf410390d46792aa2680a7164 /connectivity/source/inc/java/sql | |
parent | 07a9fc68e4e24ae7dd2d66cb3ca52336bd186825 (diff) |
INTEGRATION: CWS dba22ui (1.13.190); FILE MERGED
2006/12/05 15:02:50 fs 1.13.190.1: copying the fix for #i72252# from CWS dba22b to dba22ui - intended for the latter, but wrongly checked in into the former
Diffstat (limited to 'connectivity/source/inc/java/sql')
-rw-r--r-- | connectivity/source/inc/java/sql/Connection.hxx | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/connectivity/source/inc/java/sql/Connection.hxx b/connectivity/source/inc/java/sql/Connection.hxx index 8a34cefbba..6aad27a060 100644 --- a/connectivity/source/inc/java/sql/Connection.hxx +++ b/connectivity/source/inc/java/sql/Connection.hxx @@ -4,9 +4,9 @@ * * $RCSfile: Connection.hxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: rt $ $Date: 2005-09-08 07:20:53 $ + * last change: $Author: kz $ $Date: 2006-12-13 16:23:25 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -73,11 +73,13 @@ namespace connectivity // of all the Statement objects // for this Connection const java_sql_Driver* m_pDriver; - jobject m_pDriverobject; + jobject m_pDriverobject; - jclass m_Driver_theClass; - sal_Bool m_bParameterSubstitution; - sal_Bool m_bIgnoreDriverPrivileges; + jclass m_Driver_theClass; + ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > + m_aConnectionInfo; + sal_Bool m_bParameterSubstitution; + sal_Bool m_bIgnoreDriverPrivileges; /** transform named parameter into unnamed one. @param _sSQL @@ -103,6 +105,9 @@ namespace connectivity sal_Bool construct( const ::rtl::OUString& url, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& info); + const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& + getConnectionInfo() const { return m_aConnectionInfo; } + inline sal_Bool isIgnoreDriverPrivilegesEnabled() const { return m_bIgnoreDriverPrivileges;} // OComponentHelper virtual void SAL_CALL disposing(void); |