1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef _CONNECTIVITY_EVOAB_CONNECTION_HXX_
21 #define _CONNECTIVITY_EVOAB_CONNECTION_HXX_
23 #include "NDriver.hxx"
24 #include <com/sun/star/sdbc/SQLWarning.hpp>
25 #include <com/sun/star/beans/PropertyValue.hpp>
26 #include "connectivity/OSubComponent.hxx"
27 #include <com/sun/star/sdbcx/XTablesSupplier.hpp>
28 #include "connectivity/CommonTools.hxx"
29 #include "connectivity/warningscontainer.hxx"
30 #include "TConnection.hxx"
31 #include <cppuhelper/weakref.hxx>
32 #include <osl/module.h>
35 namespace connectivity
40 namespace SDBCAddress
{
49 typedef connectivity::OMetaConnection OConnection_BASE
; // implements basics and text encoding
51 class OEvoabConnection
:public OConnection_BASE
52 ,public connectivity::OSubComponent
<OEvoabConnection
, OConnection_BASE
>
54 friend class connectivity::OSubComponent
<OEvoabConnection
, OConnection_BASE
>;
57 const OEvoabDriver
& m_rDriver
;
58 SDBCAddress::sdbc_address_type m_eSDBCAddressType
;
59 ::com::sun::star::uno::Reference
< ::com::sun::star::sdbcx::XTablesSupplier
>
62 ::dbtools::WarningsContainer m_aWarnings
;
64 virtual ~OEvoabConnection();
67 OEvoabConnection( OEvoabDriver
& _rDriver
);
68 virtual void construct(const OUString
& _rUrl
,const ::com::sun::star::uno::Sequence
< ::com::sun::star::beans::PropertyValue
>& _rInfo
) throw( ::com::sun::star::sdbc::SQLException
);
70 inline OString
getPassword() { return m_aPassword
; }
71 inline void setPassword( OString aStr
) { m_aPassword
= aStr
; }
73 inline const OEvoabDriver
& getDriver() const { return m_rDriver
; }
75 SDBCAddress::sdbc_address_type
getSDBCAddressType() const { return m_eSDBCAddressType
;}
76 void setSDBCAddressType(SDBCAddress::sdbc_address_type _eSDBCAddressType
) {m_eSDBCAddressType
= _eSDBCAddressType
;}
79 virtual void SAL_CALL
disposing(void);
81 virtual void SAL_CALL
release() throw();
84 DECLARE_SERVICE_INFO();
87 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::sdbcx::XTablesSupplier
> createCatalog();
88 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XStatement
> SAL_CALL
createStatement( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
89 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XPreparedStatement
> SAL_CALL
prepareStatement( const OUString
& sql
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
90 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XPreparedStatement
> SAL_CALL
prepareCall( const OUString
& sql
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
91 virtual OUString SAL_CALL
nativeSQL( const OUString
& sql
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
92 virtual void SAL_CALL
setAutoCommit( sal_Bool autoCommit
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
93 virtual sal_Bool SAL_CALL
getAutoCommit( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
94 virtual void SAL_CALL
commit( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
95 virtual void SAL_CALL
rollback( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
96 virtual sal_Bool SAL_CALL
isClosed( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
97 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XDatabaseMetaData
> SAL_CALL
getMetaData( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
98 virtual void SAL_CALL
setReadOnly( sal_Bool readOnly
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
99 virtual sal_Bool SAL_CALL
isReadOnly( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
100 virtual void SAL_CALL
setCatalog( const OUString
& catalog
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
101 virtual OUString SAL_CALL
getCatalog( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
102 virtual void SAL_CALL
setTransactionIsolation( sal_Int32 level
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
103 virtual sal_Int32 SAL_CALL
getTransactionIsolation( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
104 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::container::XNameAccess
> SAL_CALL
getTypeMap( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
105 virtual void SAL_CALL
setTypeMap( const ::com::sun::star::uno::Reference
< ::com::sun::star::container::XNameAccess
>& typeMap
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
108 virtual void SAL_CALL
close( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
110 virtual ::com::sun::star::uno::Any SAL_CALL
getWarnings( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
111 virtual void SAL_CALL
clearWarnings( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
115 #endif // _CONNECTIVITY_EVOAB_CONNECTION_HXX_
117 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */