ocicalljsp.bat
来自「房间信息,可以打开」· Batch 代码 · 共 30 行
BAT
30 行
@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 + =
减小字号Ctrl + -
显示快捷键?