summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-12-13 15:23:25 +0000
committerKurt Zenker <kz@openoffice.org>2006-12-13 15:23:25 +0000
commitd69071b2481874c4d8ce6b50fb039bc9e93935a5 (patch)
tree423ed444ad08ae8bb59a896c5c2f8924c42efa8a /connectivity
parentdcdf72ec0fa3545ec64cb5990c77b2bfa53f236e (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')
-rw-r--r--connectivity/source/inc/java/sql/Connection.hxx17
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 0f431932f1c3..62dfc8f9a288 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);