ofz#391709141 Abrt __cxxabiv1::failed_throw
[LibreOffice.git] / oovbaapi / ooo / vba / dao / RecordsetOptionEnum.idl
blobdffb3f9ad878e15004fcf083fdc31043b848c4b7
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 module ooo { module vba { module dao {
3 constants RecordsetOptionEnum {
4 const long dbAppendOnly = 8;
5 const long dbConsistent = 32;
6 const long dbDenyRead = 2;
7 const long dbDenyWrite = 1;
8 const long dbExecDirect = 2048;
9 const long dbFailOnError = 128;
10 const long dbForwardOnly = 256;
11 const long dbInconsistent = 16;
12 const long dbReadOnly = 4;
13 const long dbRunAsync = 1024;
14 const long dbSeeChanges = 512;
15 const long dbSQLPassThrough = 64;
17 }; }; };
19 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */