Bump for 3.6-28
[LibreOffice.git] / connectivity / source / inc / ado / adoimp.hxx
blobf3056f3f7b309ef622be44a34802d2a6e029c967
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
28 #ifndef _CONNECTIVITY_ADO_ADOIMP_HXX_
29 #define _CONNECTIVITY_ADO_ADOIMP_HXX_
31 #include <com/sun/star/sdbc/SQLException.hpp>
33 #include "ado_pre_sys_include.h"
34 #include <adoctint.h>
35 #include "ado_post_sys_include.h"
37 struct ADOConnection;
38 enum DataTypeEnum;
39 namespace connectivity
41 namespace ado
44 class WpADOField;
45 class OLEString;
46 class ADOS
48 public:
49 // Also here: Free BSTR with SysFreeString()!
50 static OLEString& GetKeyStr();
52 static const CLSID CLSID_ADOCATALOG_25;
53 static const IID IID_ADOCATALOG_25;
55 static const CLSID CLSID_ADOCONNECTION_21;
56 static const IID IID_ADOCONNECTION_21;
58 static const CLSID CLSID_ADOCOMMAND_21;
59 static const IID IID_ADOCOMMAND_21;
61 static const CLSID CLSID_ADORECORDSET_21;
62 static const IID IID_ADORECORDSET_21;
64 static const CLSID CLSID_ADOINDEX_25;
65 static const IID IID_ADOINDEX_25;
67 static const CLSID CLSID_ADOCOLUMN_25;
68 static const IID IID_ADOCOLUMN_25;
70 static const CLSID CLSID_ADOKEY_25;
71 static const IID IID_ADOKEY_25;
73 static const CLSID CLSID_ADOTABLE_25;
74 static const IID IID_ADOTABLE_25;
76 static const CLSID CLSID_ADOGROUP_25;
77 static const IID IID_ADOGROUP_25;
79 static const CLSID CLSID_ADOUSER_25;
80 static const IID IID_ADOUSER_25;
82 static const CLSID CLSID_ADOVIEW_25;
83 static const IID IID_ADOVIEW_25;
85 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);
86 static sal_Int32 MapADOType2Jdbc(DataTypeEnum eType);
87 static DataTypeEnum MapJdbc2ADOType(sal_Int32 _nType,sal_Int32 _nJetEngine);
88 static sal_Bool isJetEngine(sal_Int32 _nEngineType);
90 static ObjectTypeEnum mapObjectType2Ado(sal_Int32 objType);
91 static sal_Int32 mapAdoType2Object(ObjectTypeEnum objType);
92 static sal_Int32 mapAdoRights2Sdbc(RightsEnum eRights);
93 static sal_Int32 mapRights2Ado(sal_Int32 nRights);
95 static WpADOField getField(ADORecordset* _pRecordSet,sal_Int32 _nColumnIndex) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
102 #define ADO_PROP(ItemName) \
103 WpADOProperty aProp(aProps.GetItem(ItemName)); \
104 OLEVariant aVar; \
105 if(aProp.IsValid()) \
106 aVar = aProp.GetValue(); \
107 else \
108 ADOS::ThrowException(*m_pADOConnection,*this);
111 #endif //_CONNECTIVITY_ADO_ADOIMP_HXX_
114 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */