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