File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -510,6 +510,13 @@ set OCI_INC_DIR=C:\instantclient_12_1\sdk\include
510
510
set OCI_LIB_DIR=C:\instantclient_12_1\sdk\lib\msvc
511
511
```
512
512
513
+ If you are installing with a local database, try:
514
+
515
+ ```
516
+ OCI_INC_DIR=C:\oracle\product\12.1.0\dbhome_1\oci\include
517
+ OCI_LIB_DIR=C:\oracle\product\12.1.0\dbhome_1\oci\lib\msvc
518
+ ```
519
+
513
520
Run the installer:
514
521
515
522
```
Original file line number Diff line number Diff line change 67
67
],
68
68
["OS=='win'" , {
69
69
"variables" : {
70
- "oci_inc_dir%" : "C:/ instantclient/ sdk/include" ,
71
- "oci_lib_dir%" : "C:/ instantclient/ sdk/lib/msvc" ,
70
+ "oci_lib_dir%" : "<!(IF DEFINED OCI_LIB_DIR (echo %OCI_LIB_DIR%) ELSE (echo C:\oracle\ instantclient\ sdk\lib\msvc))" ,
71
+ "oci_inc_dir%" : "<!(IF DEFINED OCI_INC_DIR (echo %OCI_INC_DIR%) ELSE (echo C:\oracle\ instantclient\ sdk\include))" ,
72
72
},
73
73
"configurations" : {
74
74
"Release" : {
You can’t perform that action at this time.
0 commit comments