Update ooo320-m1
[ooovba.git] / connectivity / source / inc / ado / adoimp.hxx
blobe198ba54b07fdfe502bcf91c3dbc794e8807b605
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: adoimp.hxx,v $
10 * $Revision: 1.12 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef _CONNECTIVITY_ADO_ADOIMP_HXX_
31 #define _CONNECTIVITY_ADO_ADOIMP_HXX_
33 #include <com/sun/star/sdbc/SQLException.hpp>
35 #include "ado_pre_sys_include.h"
36 #include <adoctint.h>
37 #include "ado_post_sys_include.h"
39 struct ADOConnection;
40 enum DataTypeEnum;
41 namespace connectivity
43 namespace ado
46 class WpADOField;
47 class OLEString;
48 class ADOS
50 public:
51 // Auch hier: BSTR mit SysFreeString() freigeben!
52 static OLEString& GetKeyStr();
54 static const CLSID CLSID_ADOCATALOG_25;
55 static const IID IID_ADOCATALOG_25;
57 static const CLSID CLSID_ADOCONNECTION_21;
58 static const IID IID_ADOCONNECTION_21;
60 static const CLSID CLSID_ADOCOMMAND_21;
61 static const IID IID_ADOCOMMAND_21;
63 static const CLSID CLSID_ADORECORDSET_21;
64 static const IID IID_ADORECORDSET_21;
66 static const CLSID CLSID_ADOINDEX_25;
67 static const IID IID_ADOINDEX_25;
69 static const CLSID CLSID_ADOCOLUMN_25;
70 static const IID IID_ADOCOLUMN_25;
72 static const CLSID CLSID_ADOKEY_25;
73 static const IID IID_ADOKEY_25;
75 static const CLSID CLSID_ADOTABLE_25;
76 static const IID IID_ADOTABLE_25;
78 static const CLSID CLSID_ADOGROUP_25;
79 static const IID IID_ADOGROUP_25;
81 static const CLSID CLSID_ADOUSER_25;
82 static const IID IID_ADOUSER_25;
84 static const CLSID CLSID_ADOVIEW_25;
85 static const IID IID_ADOVIEW_25;
87 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);
88 static sal_Int32 MapADOType2Jdbc(DataTypeEnum eType);
89 static DataTypeEnum MapJdbc2ADOType(sal_Int32 _nType,sal_Int32 _nJetEngine);
90 static sal_Bool isJetEngine(sal_Int32 _nEngineType);
92 static ObjectTypeEnum mapObjectType2Ado(sal_Int32 objType);
93 static sal_Int32 mapAdoType2Object(ObjectTypeEnum objType);
94 static sal_Int32 mapAdoRights2Sdbc(RightsEnum eRights);
95 static sal_Int32 mapRights2Ado(sal_Int32 nRights);
97 static WpADOField getField(ADORecordset* _pRecordSet,sal_Int32 _nColumnIndex) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
104 #define ADO_PROP(ItemName) \
105 WpADOProperty aProp(aProps.GetItem(ItemName)); \
106 OLEVariant aVar; \
107 if(aProp.IsValid()) \
108 aVar = aProp.GetValue(); \
109 else \
110 ADOS::ThrowException(*m_pADOConnection,*this);
113 #endif //_CONNECTIVITY_ADO_ADOIMP_HXX_