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 .
19 #ifndef __com_sun_star_sdbc_Deferrability_idl__
20 #define __com_sun_star_sdbc_Deferrability_idl__
22 module com
{ module sun
{ module star
{ module sdbc
{
25 /** indicates the Deferrability of key constraints.
27 published constants Deferrability
30 /** A possible value for the column <code>DEFERRABILITY</code>
32 <code>XResultSet</code> objects returned by the methods
33 <code>getImportedKeys</code>, <code>getExportedKeys</code>,
34 and <code>getCrossReference</code>.
35 <P>Indicates deferrability. See SQL-92 for a definition.
37 <!-- JRH: This and next two comments are identical. Is something missing?
38 INITIALLY_DEFERRED, INITIALLY_IMMEDIATE, and NONE? -->
40 const long INITIALLY_DEFERRED
= 5;
42 /** A possible value for the column <code>DEFERRABILITY</code>
44 <code>XResultSet</code> objects returned by the methods
45 <code>getImportedKeys</code>, <code>getExportedKeys</code>,
46 and <code>getCrossReference</code>.
47 <P>Indicates deferrability. See SQL-92 for a definition.
49 const long INITIALLY_IMMEDIATE
= 6;
51 /** A possible value for the column <code>DEFERRABILITY</code>
53 <code>XResultSet</code> objects returned by the methods
54 <code>getImportedKeys</code>, <code>getExportedKeys</code>,
55 and <code>getCrossReference</code>.
56 <P>Indicates deferrability. See SQL-92 for a definition.
64 /*===========================================================================
65 ===========================================================================*/
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */