bump product version to 4.1.6.2
[LibreOffice.git] / connectivity / source / drivers / evoab2 / NConnection.hxx
blob772bfce483b1642df785a7af5eac11ee245eccbf
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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>
33 #include "EApi.h"
35 namespace connectivity
37 namespace evoab
40 namespace SDBCAddress {
41 typedef enum {
42 Unknown = 0,
43 EVO_LOCAL = 1,
44 EVO_LDAP = 2,
45 EVO_GWISE = 3
46 } sdbc_address_type;
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>;
56 private:
57 const OEvoabDriver& m_rDriver;
58 SDBCAddress::sdbc_address_type m_eSDBCAddressType;
59 ::com::sun::star::uno::Reference< ::com::sun::star::sdbcx::XTablesSupplier >
60 m_xCatalog;
61 OString m_aPassword;
62 ::dbtools::WarningsContainer m_aWarnings;
64 virtual ~OEvoabConnection();
66 public:
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; }
72 // own methods
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;}
78 // OComponentHelper
79 virtual void SAL_CALL disposing(void);
80 // XInterface
81 virtual void SAL_CALL release() throw();
83 // XServiceInfo
84 DECLARE_SERVICE_INFO();
86 // XConnection
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);
107 // XCloseable
108 virtual void SAL_CALL close( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
109 // XWarningsSupplier
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: */