summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/adabas/BConnection.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/adabas/BConnection.cxx')
-rw-r--r--connectivity/source/drivers/adabas/BConnection.cxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/connectivity/source/drivers/adabas/BConnection.cxx b/connectivity/source/drivers/adabas/BConnection.cxx
index 3ae9e5631183..7d4309aee6f2 100644
--- a/connectivity/source/drivers/adabas/BConnection.cxx
+++ b/connectivity/source/drivers/adabas/BConnection.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: BConnection.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: oj $ $Date: 2001-08-24 06:12:05 $
+ * last change: $Author: oj $ $Date: 2001-08-29 12:21:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -120,6 +120,8 @@ SQLRETURN OAdabasConnection::Construct( const ::rtl::OUString& url,const Sequenc
osl_incrementInterlockedCount( &m_refCount );
m_aConnectionHandle = SQL_NULL_HANDLE;
+ m_aURL = url;
+ m_aInfo = info;
// Connection allozieren
N3SQLAllocHandle(SQL_HANDLE_DBC,m_pDriverHandleCopy,&m_aConnectionHandle);
@@ -306,6 +308,11 @@ Sequence< sal_Int8 > OAdabasConnection::getUnoTunnelImplementationId()
return pId->getImplementationId();
}
// -----------------------------------------------------------------------------
+::connectivity::odbc::OConnection* OAdabasConnection::cloneConnection()
+{
+ return new OAdabasConnection(m_pDriverHandleCopy,m_pDriver);
+}
+// -----------------------------------------------------------------------------