1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 #ifndef _CONNECTIVITY_ADO_ADOIMP_HXX_
28 #define _CONNECTIVITY_ADO_ADOIMP_HXX_
29 
30 #include <com/sun/star/sdbc/SQLException.hpp>
31 
32 #include "ado_pre_sys_include.h"
33 #include <adoctint.h>
34 #include "ado_post_sys_include.h"
35 
36 struct ADOConnection;
37 enum DataTypeEnum;
38 namespace connectivity
39 {
40 	namespace ado
41 	{
42 
43 		class WpADOField;
44 		class OLEString;
45 		class ADOS
46 		{
47 		public:
48 			// Auch hier: BSTR mit SysFreeString() freigeben!
49 			static OLEString& GetKeyStr();
50 
51 			static const CLSID	CLSID_ADOCATALOG_25;
52 			static const IID	IID_ADOCATALOG_25;
53 
54 			static const CLSID	CLSID_ADOCONNECTION_21;
55 			static const IID	IID_ADOCONNECTION_21;
56 
57 			static const CLSID	CLSID_ADOCOMMAND_21;
58 			static const IID	IID_ADOCOMMAND_21;
59 
60 			static const CLSID	CLSID_ADORECORDSET_21;
61 			static const IID	IID_ADORECORDSET_21;
62 
63 			static const CLSID	CLSID_ADOINDEX_25;
64 			static const IID	IID_ADOINDEX_25;
65 
66 			static const CLSID	CLSID_ADOCOLUMN_25;
67 			static const IID	IID_ADOCOLUMN_25;
68 
69 			static const CLSID	CLSID_ADOKEY_25;
70 			static const IID	IID_ADOKEY_25;
71 
72 			static const CLSID	CLSID_ADOTABLE_25;
73 			static const IID	IID_ADOTABLE_25;
74 
75 			static const CLSID	CLSID_ADOGROUP_25;
76 			static const IID	IID_ADOGROUP_25;
77 
78 			static const CLSID	CLSID_ADOUSER_25;
79 			static const IID	IID_ADOUSER_25;
80 
81 			static const CLSID	CLSID_ADOVIEW_25;
82 			static const IID	IID_ADOVIEW_25;
83 
84             static void ThrowException(ADOConnection* _pAdoCon,const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _xInterface) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
85 			static sal_Int32 MapADOType2Jdbc(DataTypeEnum eType);
86 			static DataTypeEnum MapJdbc2ADOType(sal_Int32 _nType,sal_Int32 _nJetEngine);
87 			static sal_Bool isJetEngine(sal_Int32 _nEngineType);
88 
89 			static ObjectTypeEnum	mapObjectType2Ado(sal_Int32 objType);
90 			static sal_Int32		mapAdoType2Object(ObjectTypeEnum objType);
91 			static sal_Int32		mapAdoRights2Sdbc(RightsEnum eRights);
92 			static sal_Int32		mapRights2Ado(sal_Int32 nRights);
93 
94 			static WpADOField		getField(ADORecordset* _pRecordSet,sal_Int32 _nColumnIndex) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
95 		};
96 
97 
98 	}
99 }
100 
101 #define ADO_PROP(ItemName)											\
102 		WpADOProperty aProp(aProps.GetItem(ItemName));				\
103 		OLEVariant aVar;											\
104 		if(aProp.IsValid())											\
105 			aVar = aProp.GetValue();								\
106 		else														\
107 			ADOS::ThrowException(*m_pADOConnection,*this);
108 
109 
110 #endif //_CONNECTIVITY_ADO_ADOIMP_HXX_
111 
112 
113