summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/adodb/IsolationLevelEnum.idl
blob: bcb2ef6fe4ce47614f2b7d74f0ac209f7f1fc508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
    };
}; }; };