blob: dffb3f9ad878e15004fcf083fdc31043b848c4b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module dao {
constants RecordsetOptionEnum {
const long dbAppendOnly = 8;
const long dbConsistent = 32;
const long dbDenyRead = 2;
const long dbDenyWrite = 1;
const long dbExecDirect = 2048;
const long dbFailOnError = 128;
const long dbForwardOnly = 256;
const long dbInconsistent = 16;
const long dbReadOnly = 4;
const long dbRunAsync = 1024;
const long dbSeeChanges = 512;
const long dbSQLPassThrough = 64;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|