1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: adoimp.hxx,v $
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"
37 #include "ado_post_sys_include.h"
41 namespace connectivity
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)); \
107 if(aProp.IsValid()) \
108 aVar = aProp.GetValue(); \
110 ADOS::ThrowException(*m_pADOConnection,*this);
113 #endif //_CONNECTIVITY_ADO_ADOIMP_HXX_