1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
20 #include <osl/diagnose.h>
21 #include <comphelper/diagnose_ex.hxx>
22 #include <com/sun/star/container/XNameAccess.hpp>
23 #include <com/sun/star/sdbc/DataType.hpp>
24 #include <com/sun/star/sdbc/XConnection.hpp>
25 #include <com/sun/star/sdbcx/XTablesSupplier.hpp>
26 #include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
27 #include <com/sun/star/sdb/XQueriesSupplier.hpp>
28 #include <com/sun/star/beans/XPropertySet.hpp>
33 #include <swmodule.hxx>
35 using namespace ::com::sun::star::uno
;
36 using namespace ::com::sun::star::container
;
37 using namespace ::com::sun::star::sdb
;
38 using namespace ::com::sun::star::sdbc
;
39 using namespace ::com::sun::star::sdbcx
;
40 using namespace ::com::sun::star::beans
;
42 // This file contains all routines of the fldui directory, which must compile
43 // with exceptions. So we can reduce the code of the other files, which don't
44 // need any exception handling.
46 // Is the database field numeric?
47 // remark: in case of error true is returned
48 bool SwFieldMgr::IsDBNumeric( const OUString
& rDBName
, const OUString
& rTableQryName
,
49 bool bIsTable
, const OUString
& rFieldName
)
53 SwDBManager
* pDBManager
;
55 pDBManager
= m_pWrtShell
->GetDBManager();
58 if (SwView
* pView
= GetActiveView())
59 pDBManager
= pView
->GetWrtShell().GetDBManager();
64 Reference
< XConnection
> xConnection
=
65 pDBManager
->RegisterConnection(rDBName
);
67 if( !xConnection
.is() )
70 Reference
<XColumnsSupplier
> xColsSupplier
;
73 Reference
<XTablesSupplier
> xTSupplier(xConnection
, UNO_QUERY
);
76 Reference
<XNameAccess
> xTables
= xTSupplier
->getTables();
77 OSL_ENSURE(xTables
->hasByName(rTableQryName
), "table not available anymore?");
80 Any aTable
= xTables
->getByName(rTableQryName
);
81 Reference
<XPropertySet
> xPropSet
;
83 xColsSupplier
.set(xPropSet
, UNO_QUERY
);
85 catch (const Exception
&)
92 Reference
<XQueriesSupplier
> xQSupplier(xConnection
, UNO_QUERY
);
95 Reference
<XNameAccess
> xQueries
= xQSupplier
->getQueries();
96 OSL_ENSURE(xQueries
->hasByName(rTableQryName
), "table not available anymore?");
99 Any aQuery
= xQueries
->getByName(rTableQryName
);
100 Reference
<XPropertySet
> xPropSet
;
102 xColsSupplier
.set(xPropSet
, UNO_QUERY
);
104 catch (const Exception
&)
110 if(xColsSupplier
.is())
112 Reference
<XNameAccess
> xCols
;
115 xCols
= xColsSupplier
->getColumns();
117 catch (const Exception
&)
119 TOOLS_WARN_EXCEPTION( "sw", "getColumns()");
121 if(xCols
.is() && xCols
->hasByName(rFieldName
))
123 Any aCol
= xCols
->getByName(rFieldName
);
124 Reference
<XPropertySet
> xCol
;
126 Any aType
= xCol
->getPropertyValue(u
"Type"_ustr
);
127 sal_Int32 eDataType
= 0;
132 case DataType::BOOLEAN
:
133 case DataType::TINYINT
:
134 case DataType::SMALLINT
:
135 case DataType::INTEGER
:
136 case DataType::BIGINT
:
137 case DataType::FLOAT
:
139 case DataType::DOUBLE
:
140 case DataType::NUMERIC
:
141 case DataType::DECIMAL
:
144 case DataType::TIMESTAMP
:
147 case DataType::BINARY
:
148 case DataType::VARBINARY
:
149 case DataType::LONGVARBINARY
:
150 case DataType::SQLNULL
:
151 case DataType::OTHER
:
152 case DataType::OBJECT
:
153 case DataType::DISTINCT
:
154 case DataType::STRUCT
:
155 case DataType::ARRAY
:
160 case DataType::VARCHAR
:
161 case DataType::LONGVARCHAR
:
170 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */