📄 ocicalljsp.bat
字号:
@echo off
Rem
Rem Copyright (c) 1999 by Oracle Corporation. All Rights Reserved.
Rem
Rem Name : ociCallJSP.bat
Rem
Rem
Rem Please substitute appropriately
Rem
Rem a) INCLUDE_PATH_STANDARD with the path where standard header files like stdio.h can be found
Rem
Rem b) INCLUDE_PATH_OCI with the path where OCI Header Files can be found. Generally they are found
Rem at ORACLE_HOME:\oci\include directory
Rem
Rem c) LIBRARY_PATH_OCI with the Library Path where oci.lib can be found. Generally oci.lib can be
Rem found at ORACLE_HOME:\oci\lib\msvc\oci.lib
Rem
Rem d) LIB with library path where standard C libraries can be found
Rem
Rem Please make sure that cl.exe (C compiler is in your path)
Rem
SET INCLUDE_PATH_STANDARD="i:\include"
SET INCLUDE_PATH_OCI="d:\ora92\oci\include"
SET LIBRARY_PATH_OCI="d:\ora92\oci\lib\msvc\oci.lib"
SET LIB="i:\lib"
cl -I%INCLUDE_PATH_STANDARD% -I%INCLUDE_PATH_OCI% ociCallJSP.c /link %LIBRARY_PATH_OCI%
Rem
Rem
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -