blob: 9dca88287af6fe241ba76fa5a24ebfa544c36354 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module adodb {
constants IsolationLevelEnum {
const long adXactBrowse = 256;
const long adXactChaos = 16;
const long adXactCursorStability = 4096;
const long adXactIsolated = 1048576;
const long adXactReadCommitted = 4096;
const long adXactReadUncommitted = 256;
const long adXactRepeatableRead = 65536;
const long adXactSerializable = 1048576;
const long adXactUnspecified = -1;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|