bump product version to 5.0.4.1
[LibreOffice.git] / connectivity / source / inc / ado / AConnection.hxx
blob7b45d1bf594bcd74c8a4be767015c9edae1e36b2
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 .
19 #ifndef INCLUDED_CONNECTIVITY_SOURCE_INC_ADO_ACONNECTION_HXX
20 #define INCLUDED_CONNECTIVITY_SOURCE_INC_ADO_ACONNECTION_HXX
22 #include <com/sun/star/sdbc/SQLWarning.hpp>
23 #include <com/sun/star/sdbcx/XTablesSupplier.hpp>
24 #include <com/sun/star/beans/PropertyValue.hpp>
25 #include <connectivity/OSubComponent.hxx>
26 #include <map>
27 #include <connectivity/CommonTools.hxx>
28 #include "OTypeInfo.hxx"
29 #include "TConnection.hxx"
30 #include "ado/Awrapado.hxx"
32 namespace connectivity
34 namespace ado
36 struct OExtendedTypeInfo
38 ::connectivity::OTypeInfo aSimpleType; // the general type info
39 DataTypeEnum eType;
41 inline OUString getDBName() const { return aSimpleType.aTypeName; }
44 class WpADOConnection;
45 class ODriver;
46 class OCatalog;
47 typedef ::std::multimap<DataTypeEnum, OExtendedTypeInfo*> OTypeInfoMap;
48 typedef connectivity::OMetaConnection OConnection_BASE;
51 class OConnection : public OConnection_BASE,
52 public connectivity::OSubComponent<OConnection, OConnection_BASE>
54 friend class connectivity::OSubComponent<OConnection, OConnection_BASE>;
56 protected:
58 // Data attributes
60 OTypeInfoMap m_aTypeInfo; // vector containing an entry
61 // for each row returned by
62 // DatabaseMetaData.getTypeInfo.
63 ::com::sun::star::uno::WeakReference< ::com::sun::star::sdbcx::XTablesSupplier> m_xCatalog;
64 ODriver* m_pDriver;
65 private:
66 WpADOConnection* m_pAdoConnection;
67 OCatalog* m_pCatalog;
68 sal_Int32 m_nEngineType;
69 sal_Bool m_bClosed;
70 sal_Bool m_bAutocommit;
72 protected:
73 void buildTypeInfo() throw( ::com::sun::star::sdbc::SQLException);
74 public:
76 OConnection(ODriver* _pDriver) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
77 // OConnection(const SQLHANDLE _pConnectionHandle);
78 ~OConnection();
79 void construct(const OUString& url,const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& info);
81 void closeAllStatements () throw( ::com::sun::star::sdbc::SQLException);
83 //XUnoTunnel
84 virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw (::com::sun::star::uno::RuntimeException);
85 static ::com::sun::star::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
86 // XServiceInfo
87 DECLARE_SERVICE_INFO();
88 // OComponentHelper
89 virtual void SAL_CALL disposing();
90 // XInterface
91 virtual void SAL_CALL release() throw();
93 // XConnection
94 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);
95 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);
96 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);
97 virtual OUString SAL_CALL nativeSQL( const OUString& sql ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
98 virtual void SAL_CALL setAutoCommit( sal_Bool autoCommit ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
99 virtual sal_Bool SAL_CALL getAutoCommit( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
100 virtual void SAL_CALL commit( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
101 virtual void SAL_CALL rollback( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
102 virtual sal_Bool SAL_CALL isClosed( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
103 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);
104 virtual void SAL_CALL setReadOnly( sal_Bool readOnly ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
105 virtual sal_Bool SAL_CALL isReadOnly( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
106 virtual void SAL_CALL setCatalog( const OUString& catalog ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
107 virtual OUString SAL_CALL getCatalog( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
108 virtual void SAL_CALL setTransactionIsolation( sal_Int32 level ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
109 virtual sal_Int32 SAL_CALL getTransactionIsolation( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
110 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);
111 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);
112 // XCloseable
113 virtual void SAL_CALL close( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
114 // XWarningsSupplier
115 virtual ::com::sun::star::uno::Any SAL_CALL getWarnings( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
116 virtual void SAL_CALL clearWarnings( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
118 WpADOConnection* getConnection() { return m_pAdoConnection; }
119 void setCatalog(const ::com::sun::star::uno::WeakReference< ::com::sun::star::sdbcx::XTablesSupplier>& _xCat) { m_xCatalog = _xCat; }
120 void setCatalog(OCatalog* _pCatalog) { m_pCatalog = _pCatalog; }
122 const OTypeInfoMap* getTypeInfo() const { return &m_aTypeInfo;}
123 OCatalog* getAdoCatalog() const
125 if ( m_xCatalog.get().is() )
126 return m_pCatalog;
127 return NULL;
130 sal_Int32 getEngineType() const { return m_nEngineType; }
131 ODriver* getDriver() const { return m_pDriver; }
133 static const OExtendedTypeInfo* getTypeInfoFromType(const OTypeInfoMap& _rTypeInfo,
134 DataTypeEnum _nType,
135 const OUString& _sTypeName,
136 sal_Int32 _nPrecision,
137 sal_Int32 _nScale,
138 sal_Bool& _brForceToType);
142 #endif // INCLUDED_CONNECTIVITY_SOURCE_INC_ADO_ACONNECTION_HXX
144 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */