DBA Data[Home] [Help]

SYS.DBMS_XA dependencies on UTL_RAW

Line 39: TMSUCCESS CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('04000000');

35: /* use TMNOFLAGS to indicate no flag value is selected */
36: TMNOFLAGS CONSTANT PLS_INTEGER := 00000000;
37:
38: /* dissociate caller from transaction branch */
39: TMSUCCESS CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('04000000');
40:
41: /* caller is joining existing transaction branch */
42: TMJOIN CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('00200000');
43:

Line 42: TMJOIN CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('00200000');

38: /* dissociate caller from transaction branch */
39: TMSUCCESS CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('04000000');
40:
41: /* caller is joining existing transaction branch */
42: TMJOIN CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('00200000');
43:
44: /* caller is suspending, not ending, association */
45: TMSUSPEND CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('02000000');
46:

Line 45: TMSUSPEND CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('02000000');

41: /* caller is joining existing transaction branch */
42: TMJOIN CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('00200000');
43:
44: /* caller is suspending, not ending, association */
45: TMSUSPEND CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('02000000');
46:
47: /* caller is resuming association with suspended transaction branch */
48: TMRESUME CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('08000000');
49:

Line 48: TMRESUME CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('08000000');

44: /* caller is suspending, not ending, association */
45: TMSUSPEND CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('02000000');
46:
47: /* caller is resuming association with suspended transaction branch */
48: TMRESUME CONSTANT PLS_INTEGER := utl_raw.cast_to_binary_integer('08000000');
49:
50: /*
51: ********************************************************************************
52: * The following constants are defined for possible return value of *