remove assert looking for new compatibilityMode DOCX
[LibreOffice.git] / offapi / com / sun / star / sdbc / ProcedureResult.idl
blob002ece34d0e9b5299e2e495355e38dc0f71fc3ef
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 module com { module sun { module star { module sdbc {
23 /** determines whether a procedure returns a result or not.
25 published constants ProcedureResult
28 /** A possible value for column
29 <code>PROCEDURE_TYPE</code>
30 in the
31 com::sun::star::sdbc::XResultSet
32 object returned by the method
33 com::sun::star::sdbc::XDatabaseMetaData::getProcedures().
34 <p>
35 Indicates that it is not known whether the procedure returns
36 a result.
37 </p>
39 const long UNKNOWN = 0;
41 /** A possible value for column
42 <code>PROCEDURE_TYPE</code>
43 in the
44 com::sun::star::sdbc::XResultSet
45 object returned by the method
46 com::sun::star::sdbc::XDatabaseMetaData::getProcedures().
47 <p>
48 Indicates that the procedure does not return
49 a result.
50 </p>
52 const long NONE = 1;
54 /** A possible value for column
55 <code>PROCEDURE_TYPE</code>
56 in the
57 com::sun::star::sdbc::XResultSet
58 object returned by the method
59 com::sun::star::sdbc::XDatabaseMetaData::getProcedures().
60 <p>
61 Indicates that the procedure returns
62 a result.
63 </p>
65 const long RETURN = 2;
69 }; }; }; };
71 /*===========================================================================
72 ===========================================================================*/
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */