1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23#ifndef __ooo_vba_dao_DataTypeEnum_idl__
24#define __ooo_vba_dao_DataTypeEnum_idl__
25
26module ooo { module vba { module dao {
27    constants DataTypeEnum {
28        const long dbBigInt = 16;
29        const long dbBinary = 9;
30        const long dbBoolean = 1;
31        const long dbByte = 2;
32        const long dbChar = 18;
33        const long dbCurrency = 5;
34        const long dbDate = 8;
35        const long dbDecimal = 20;
36        const long dbDouble = 7;
37        const long dbFloat = 21;
38        const long dbGUID = 15;
39        const long dbInteger = 3;
40        const long dbLong = 4;
41        const long dbLongBinary = 11;
42        const long dbMemo = 12;
43        const long dbNumeric = 19;
44        const long dbSingle = 6;
45        const long dbText = 10;
46        const long dbTime = 22;
47        const long dbTimeStamp = 23;
48        const long dbVarBinary = 17;
49    };
50}; }; };
51
52#endif
53