LibreOfficeDev
LibreOfficeDev 25.8 SDK API Reference
PseudoColumnUsage.idl
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
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/.
8  */
9 
10  module com { module sun { module star { module sdbc {
11 
12 
16 constants PseudoColumnUsage
17 {
18 
21  const long NO_USAGE_RESTRICTIONS = 0;
22 
25  const long SELECT_LIST_ONLY = 1;
26 
29  const long USAGE_UNKNOWN = 2;
30 
33  const long WHERE_CLAUSE_ONLY = 3;
34 };
35 
36 
37 }; }; }; };
38 
39 /*===========================================================================
40 ===========================================================================*/
41 
42 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
const long WHERE_CLAUSE_ONLY
indicates the pseudo/hidden column may only be used in a WHERE clause.
Definition: PseudoColumnUsage.idl:33
Definition: Ambiguous.idl:20
const long NO_USAGE_RESTRICTIONS
indicates there are no restrictions on the usage of the pseudo/hidden columns.
Definition: PseudoColumnUsage.idl:21
const long USAGE_UNKNOWN
indicates the usage of the pseudo/hidden column cannot be determined.
Definition: PseudoColumnUsage.idl:29
const long SELECT_LIST_ONLY
indicates the pseudo/hidden column may only be used in a SELECT list.
Definition: PseudoColumnUsage.idl:25