| Line 1... |
Line 1... |
| 1 |
Option Explicit
|
1 |
Option Explicit
|
| 2 |
'=====================================================
|
2 |
'=====================================================
|
| 3 |
' Name: config
|
3 |
' Name: config
|
| 4 |
' Description: Contains all configuration details,
|
4 |
' Description: Contains all configuration details,
|
| 5 |
' enums, global constants and variables.
|
5 |
' enums, global constants and variables.
|
| 6 |
'=====================================================
|
6 |
'=====================================================
|
| 7 |
|
7 |
|
| 8 |
'=========== GLOBAL CONSTANTS DECLARATION ============
|
8 |
'=========== GLOBAL CONSTANTS DECLARATION ============
|
| 9 |
'============ GLOBAL VARIABLES DEFINITION ============
|
9 |
'============ GLOBAL VARIABLES DEFINITION ============
|
| Line 13... |
Line 13... |
| 13 |
Dim QUERIES_PATH
|
13 |
Dim QUERIES_PATH
|
| 14 |
'============= VARIABLES INITIALISATION ==============
|
14 |
'============= VARIABLES INITIALISATION ==============
|
| 15 |
APP_ROOT = Get_Application_Path()
|
15 |
APP_ROOT = Get_Application_Path()
|
| 16 |
'==================== INCLUDE ASP ====================
|
16 |
'==================== INCLUDE ASP ====================
|
| 17 |
'Call Include_File ( AppPath &"common\base_conf.asp" )
|
17 |
'Call Include_File ( AppPath &"common\base_conf.asp" )
|
| 18 |
'================== CONFIGURATION ====================
|
18 |
'================== CONFIGURATION ====================
|
| 19 |
Set OraSession = CreateObject("OracleInProcServer.XOraSession")
|
19 |
Set OraSession = CreateObject("OracleInProcServer.XOraSession")
|
| 20 |
Set OraDatabase = OraSession.OpenDatabase( "RELMANU1", "DEPLOYMENT_MANAGER/DEPLOYMENT_MANAGER", Cint(0))
|
20 |
Set OraDatabase = OraSession.OpenDatabase( "RELMANU1", "DEPLOYMENT_MANAGER/DEPLOYMENT_MANAGER", Cint(0))
|
| 21 |
QUERIES_PATH = APP_ROOT &"jobs\queries"
|
21 |
QUERIES_PATH = APP_ROOT &"jobs\queries"
|
| 22 |
|
22 |
|
| 23 |
Const UNC_ARCHIVE = "\\auperaunx26\releasem"
|
23 |
Const UNC_ARCHIVE = "\\auperaunx26\releasem"
|
| Line 64... |
Line 64... |
| 64 |
const ORATYPE_VARRAY = 247
|
64 |
const ORATYPE_VARRAY = 247
|
| 65 |
const ORATYPE_TABLE = 248
|
65 |
const ORATYPE_TABLE = 248
|
| 66 |
const ORATYPE_CURSOR = 102
|
66 |
const ORATYPE_CURSOR = 102
|
| 67 |
|
67 |
|
| 68 |
|
68 |
|
| 69 |
const ORAPARM_INPUT=1
|
69 |
const ORAPARM_INPUT=1
|
| 70 |
const ORAPARM_OUTPUT=2
|
70 |
const ORAPARM_OUTPUT=2
|
| 71 |
const ORAPARM_BOTH=3
|
71 |
const ORAPARM_BOTH=3
|
| 72 |
|
72 |
|
| 73 |
const ORADYN_DEFAULT=&H0&
|
73 |
const ORADYN_DEFAULT=&H0&
|
| 74 |
'=====================================================
|
74 |
'=====================================================
|
| 75 |
|
75 |
|