embulk-output-oracle 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +160 -160
- data/build.gradle +6 -6
- data/classpath/{embulk-output-jdbc-0.4.0.jar → embulk-output-jdbc-0.4.1.jar} +0 -0
- data/classpath/{embulk-output-oracle-0.4.0.jar → embulk-output-oracle-0.4.1.jar} +0 -0
- data/lib/embulk/output/oracle.rb +3 -3
- data/src/main/cpp/common/dir-path-load.cpp +424 -424
- data/src/main/cpp/common/dir-path-load.h +36 -36
- data/src/main/cpp/common/embulk-output-oracle.cpp +196 -196
- data/src/main/cpp/common/org_embulk_output_oracle_oci_OCI.h +77 -77
- data/src/main/cpp/linux/build.sh +21 -21
- data/src/main/cpp/win/build.bat +31 -31
- data/src/main/cpp/win/dllmain.cpp +25 -25
- data/src/main/cpp/win/embulk-output-oracle.sln +39 -39
- data/src/main/cpp/win/embulk-output-oracle.vcxproj +175 -175
- data/src/main/java/org/embulk/output/OracleOutputPlugin.java +153 -153
- data/src/main/java/org/embulk/output/oracle/DirectBatchInsert.java +290 -290
- data/src/main/java/org/embulk/output/oracle/InsertMethod.java +8 -8
- data/src/main/java/org/embulk/output/oracle/OracleCharset.java +32 -32
- data/src/main/java/org/embulk/output/oracle/OracleOutputConnection.java +165 -165
- data/src/main/java/org/embulk/output/oracle/OracleOutputConnector.java +49 -49
- data/src/main/java/org/embulk/output/oracle/TimestampFormat.java +37 -37
- data/src/main/java/org/embulk/output/oracle/oci/ColumnDefinition.java +26 -26
- data/src/main/java/org/embulk/output/oracle/oci/OCI.java +139 -139
- data/src/main/java/org/embulk/output/oracle/oci/OCIManager.java +64 -64
- data/src/main/java/org/embulk/output/oracle/oci/OCIWrapper.java +96 -96
- data/src/main/java/org/embulk/output/oracle/oci/RowBuffer.java +105 -105
- data/src/main/java/org/embulk/output/oracle/oci/TableDefinition.java +24 -24
- data/src/test/cpp/common/embulk-output-oracle-test.cpp +69 -69
- data/src/test/cpp/linux/build.sh +19 -19
- data/src/test/cpp/win/build.bat +28 -28
- data/src/test/cpp/win/embulk-output-oracle-test.vcxproj +154 -154
- data/src/test/java/org/embulk/input/filesplit/LocalFileSplitInputPlugin.java +187 -187
- data/src/test/java/org/embulk/input/filesplit/PartialFile.java +49 -49
- data/src/test/java/org/embulk/input/filesplit/PartialFileInputStream.java +154 -154
- data/src/test/java/org/embulk/output/oracle/ChildFirstClassLoader.java +42 -42
- data/src/test/java/org/embulk/output/oracle/EmbulkPluginTester.java +124 -120
- data/src/test/java/org/embulk/output/oracle/EmptyConfigSource.java +105 -100
- data/src/test/java/org/embulk/output/oracle/OracleOutputPluginTest.java +38 -14
- data/src/test/java/org/embulk/output/oracle/OracleOutputPluginTestImpl.java +540 -484
- data/src/test/java/org/embulk/output/oracle/TimestampFormatTest.java +57 -57
- data/src/test/resources/data/test1/test1.csv +3 -3
- data/src/test/resources/yml/test-insert-direct-direct-method.yml +26 -0
- data/src/test/resources/yml/test-insert-direct-empty.yml +25 -0
- data/src/test/resources/yml/{test-insert-oci-split.yml → test-insert-direct-oci-method-split.yml} +28 -28
- data/src/test/resources/yml/{test-insert-oci.yml → test-insert-direct-oci-method.yml} +28 -28
- data/src/test/resources/yml/test-insert-direct.yml +25 -26
- data/src/test/resources/yml/test-insert-empty.yml +27 -0
- data/src/test/resources/yml/test-insert.yml +27 -25
- data/src/test/resources/yml/test-replace-empty.yml +31 -0
- data/src/test/resources/yml/test-replace-long-name-multibyte.yml +31 -31
- data/src/test/resources/yml/test-replace-long-name.yml +31 -31
- data/src/test/resources/yml/test-replace.yml +31 -31
- data/src/test/resources/yml/test-string-timestamp.yml +28 -28
- data/src/test/resources/yml/test-url.yml +24 -24
- metadata +10 -6
@@ -1,77 +1,77 @@
|
|
1
|
-
/* DO NOT EDIT THIS FILE - it is machine generated */
|
2
|
-
#include <jni.h>
|
3
|
-
/* Header for class org_embulk_output_oracle_oci_OCI */
|
4
|
-
|
5
|
-
#ifndef _Included_org_embulk_output_oracle_oci_OCI
|
6
|
-
#define _Included_org_embulk_output_oracle_oci_OCI
|
7
|
-
#ifdef __cplusplus
|
8
|
-
extern "C" {
|
9
|
-
#endif
|
10
|
-
/*
|
11
|
-
* Class: org_embulk_output_oracle_oci_OCI
|
12
|
-
* Method: createContext
|
13
|
-
* Signature: ()[B
|
14
|
-
*/
|
15
|
-
JNIEXPORT jbyteArray JNICALL Java_org_embulk_output_oracle_oci_OCI_createContext
|
16
|
-
(JNIEnv *, jobject);
|
17
|
-
|
18
|
-
/*
|
19
|
-
* Class: org_embulk_output_oracle_oci_OCI
|
20
|
-
* Method: getLasetMessage
|
21
|
-
* Signature: ([B)[B
|
22
|
-
*/
|
23
|
-
JNIEXPORT jbyteArray JNICALL Java_org_embulk_output_oracle_oci_OCI_getLasetMessage
|
24
|
-
(JNIEnv *, jobject, jbyteArray);
|
25
|
-
|
26
|
-
/*
|
27
|
-
* Class: org_embulk_output_oracle_oci_OCI
|
28
|
-
* Method: open
|
29
|
-
* Signature: ([BLjava/lang/String;Ljava/lang/String;Ljava/lang/String;)Z
|
30
|
-
*/
|
31
|
-
JNIEXPORT jboolean JNICALL Java_org_embulk_output_oracle_oci_OCI_open
|
32
|
-
(JNIEnv *, jobject, jbyteArray, jstring, jstring, jstring);
|
33
|
-
|
34
|
-
/*
|
35
|
-
* Class: org_embulk_output_oracle_oci_OCI
|
36
|
-
* Method: prepareLoad
|
37
|
-
* Signature: ([BLorg/embulk/output/oracle/oci/TableDefinition;)Z
|
38
|
-
*/
|
39
|
-
JNIEXPORT jboolean JNICALL Java_org_embulk_output_oracle_oci_OCI_prepareLoad
|
40
|
-
(JNIEnv *, jobject, jbyteArray, jobject);
|
41
|
-
|
42
|
-
/*
|
43
|
-
* Class: org_embulk_output_oracle_oci_OCI
|
44
|
-
* Method: loadBuffer
|
45
|
-
* Signature: ([B[BI)Z
|
46
|
-
*/
|
47
|
-
JNIEXPORT jboolean JNICALL Java_org_embulk_output_oracle_oci_OCI_loadBuffer
|
48
|
-
(JNIEnv *, jobject, jbyteArray, jbyteArray, jint);
|
49
|
-
|
50
|
-
/*
|
51
|
-
* Class: org_embulk_output_oracle_oci_OCI
|
52
|
-
* Method: commit
|
53
|
-
* Signature: ([B)Z
|
54
|
-
*/
|
55
|
-
JNIEXPORT jboolean JNICALL Java_org_embulk_output_oracle_oci_OCI_commit
|
56
|
-
(JNIEnv *, jobject, jbyteArray);
|
57
|
-
|
58
|
-
/*
|
59
|
-
* Class: org_embulk_output_oracle_oci_OCI
|
60
|
-
* Method: rollback
|
61
|
-
* Signature: ([B)Z
|
62
|
-
*/
|
63
|
-
JNIEXPORT jboolean JNICALL Java_org_embulk_output_oracle_oci_OCI_rollback
|
64
|
-
(JNIEnv *, jobject, jbyteArray);
|
65
|
-
|
66
|
-
/*
|
67
|
-
* Class: org_embulk_output_oracle_oci_OCI
|
68
|
-
* Method: close
|
69
|
-
* Signature: ([B)V
|
70
|
-
*/
|
71
|
-
JNIEXPORT void JNICALL Java_org_embulk_output_oracle_oci_OCI_close
|
72
|
-
(JNIEnv *, jobject, jbyteArray);
|
73
|
-
|
74
|
-
#ifdef __cplusplus
|
75
|
-
}
|
76
|
-
#endif
|
77
|
-
#endif
|
1
|
+
/* DO NOT EDIT THIS FILE - it is machine generated */
|
2
|
+
#include <jni.h>
|
3
|
+
/* Header for class org_embulk_output_oracle_oci_OCI */
|
4
|
+
|
5
|
+
#ifndef _Included_org_embulk_output_oracle_oci_OCI
|
6
|
+
#define _Included_org_embulk_output_oracle_oci_OCI
|
7
|
+
#ifdef __cplusplus
|
8
|
+
extern "C" {
|
9
|
+
#endif
|
10
|
+
/*
|
11
|
+
* Class: org_embulk_output_oracle_oci_OCI
|
12
|
+
* Method: createContext
|
13
|
+
* Signature: ()[B
|
14
|
+
*/
|
15
|
+
JNIEXPORT jbyteArray JNICALL Java_org_embulk_output_oracle_oci_OCI_createContext
|
16
|
+
(JNIEnv *, jobject);
|
17
|
+
|
18
|
+
/*
|
19
|
+
* Class: org_embulk_output_oracle_oci_OCI
|
20
|
+
* Method: getLasetMessage
|
21
|
+
* Signature: ([B)[B
|
22
|
+
*/
|
23
|
+
JNIEXPORT jbyteArray JNICALL Java_org_embulk_output_oracle_oci_OCI_getLasetMessage
|
24
|
+
(JNIEnv *, jobject, jbyteArray);
|
25
|
+
|
26
|
+
/*
|
27
|
+
* Class: org_embulk_output_oracle_oci_OCI
|
28
|
+
* Method: open
|
29
|
+
* Signature: ([BLjava/lang/String;Ljava/lang/String;Ljava/lang/String;)Z
|
30
|
+
*/
|
31
|
+
JNIEXPORT jboolean JNICALL Java_org_embulk_output_oracle_oci_OCI_open
|
32
|
+
(JNIEnv *, jobject, jbyteArray, jstring, jstring, jstring);
|
33
|
+
|
34
|
+
/*
|
35
|
+
* Class: org_embulk_output_oracle_oci_OCI
|
36
|
+
* Method: prepareLoad
|
37
|
+
* Signature: ([BLorg/embulk/output/oracle/oci/TableDefinition;)Z
|
38
|
+
*/
|
39
|
+
JNIEXPORT jboolean JNICALL Java_org_embulk_output_oracle_oci_OCI_prepareLoad
|
40
|
+
(JNIEnv *, jobject, jbyteArray, jobject);
|
41
|
+
|
42
|
+
/*
|
43
|
+
* Class: org_embulk_output_oracle_oci_OCI
|
44
|
+
* Method: loadBuffer
|
45
|
+
* Signature: ([B[BI)Z
|
46
|
+
*/
|
47
|
+
JNIEXPORT jboolean JNICALL Java_org_embulk_output_oracle_oci_OCI_loadBuffer
|
48
|
+
(JNIEnv *, jobject, jbyteArray, jbyteArray, jint);
|
49
|
+
|
50
|
+
/*
|
51
|
+
* Class: org_embulk_output_oracle_oci_OCI
|
52
|
+
* Method: commit
|
53
|
+
* Signature: ([B)Z
|
54
|
+
*/
|
55
|
+
JNIEXPORT jboolean JNICALL Java_org_embulk_output_oracle_oci_OCI_commit
|
56
|
+
(JNIEnv *, jobject, jbyteArray);
|
57
|
+
|
58
|
+
/*
|
59
|
+
* Class: org_embulk_output_oracle_oci_OCI
|
60
|
+
* Method: rollback
|
61
|
+
* Signature: ([B)Z
|
62
|
+
*/
|
63
|
+
JNIEXPORT jboolean JNICALL Java_org_embulk_output_oracle_oci_OCI_rollback
|
64
|
+
(JNIEnv *, jobject, jbyteArray);
|
65
|
+
|
66
|
+
/*
|
67
|
+
* Class: org_embulk_output_oracle_oci_OCI
|
68
|
+
* Method: close
|
69
|
+
* Signature: ([B)V
|
70
|
+
*/
|
71
|
+
JNIEXPORT void JNICALL Java_org_embulk_output_oracle_oci_OCI_close
|
72
|
+
(JNIEnv *, jobject, jbyteArray);
|
73
|
+
|
74
|
+
#ifdef __cplusplus
|
75
|
+
}
|
76
|
+
#endif
|
77
|
+
#endif
|
data/src/main/cpp/linux/build.sh
CHANGED
@@ -1,21 +1,21 @@
|
|
1
|
-
# gcc, g++ and Oracle Instant Client Basic and SDK are requred.
|
2
|
-
#
|
3
|
-
# ln libocci.so.x.x libocci.so
|
4
|
-
# ln libclntsh.so.x.x libclntsh.so
|
5
|
-
#
|
6
|
-
|
7
|
-
if [ "$JAVA_HOME" = "" ]
|
8
|
-
then
|
9
|
-
echo "You should set the environment variable 'JAVA_HOME'."
|
10
|
-
exit 1
|
11
|
-
fi
|
12
|
-
|
13
|
-
if [ "$OCI_PATH" = "" ]
|
14
|
-
then
|
15
|
-
echo "You should set the environment variable 'OCI_PATH'."
|
16
|
-
exit 1
|
17
|
-
fi
|
18
|
-
|
19
|
-
mkdir -p ../../../../lib/embulk/linux_x64
|
20
|
-
|
21
|
-
gcc -fPIC -I. -I"$JAVA_HOME/include" -I"$OCI_PATH/sdk/include" -I../../../main/cpp/common -L"$OCI_PATH" -shared ../../../main/cpp/common/embulk-output-oracle.cpp ../../../main/cpp/common/dir-path-load.cpp -locci -lclntsh -lstdc++ -o ../../../../lib/embulk/linux_x64/libembulk-output-oracle.so
|
1
|
+
# gcc, g++ and Oracle Instant Client Basic and SDK are requred.
|
2
|
+
#
|
3
|
+
# ln libocci.so.x.x libocci.so
|
4
|
+
# ln libclntsh.so.x.x libclntsh.so
|
5
|
+
#
|
6
|
+
|
7
|
+
if [ "$JAVA_HOME" = "" ]
|
8
|
+
then
|
9
|
+
echo "You should set the environment variable 'JAVA_HOME'."
|
10
|
+
exit 1
|
11
|
+
fi
|
12
|
+
|
13
|
+
if [ "$OCI_PATH" = "" ]
|
14
|
+
then
|
15
|
+
echo "You should set the environment variable 'OCI_PATH'."
|
16
|
+
exit 1
|
17
|
+
fi
|
18
|
+
|
19
|
+
mkdir -p ../../../../lib/embulk/linux_x64
|
20
|
+
|
21
|
+
gcc -fPIC -I. -I"$JAVA_HOME/include" -I"$OCI_PATH/sdk/include" -I../../../main/cpp/common -L"$OCI_PATH" -shared ../../../main/cpp/common/embulk-output-oracle.cpp ../../../main/cpp/common/dir-path-load.cpp -locci -lclntsh -lstdc++ -o ../../../../lib/embulk/linux_x64/libembulk-output-oracle.so
|
data/src/main/cpp/win/build.bat
CHANGED
@@ -1,32 +1,32 @@
|
|
1
|
-
@ECHO OFF
|
2
|
-
|
3
|
-
REM Visual Studio and Oracle Instant Client SDK are requred.
|
4
|
-
REM You should set the environment variable 'PATH' to CL.exe(x86_amd64) of Visual Studio.
|
5
|
-
|
6
|
-
IF "%JAVA_HOME%" == "" (
|
7
|
-
ECHO "You should set the environment variable 'JAVA_HOME'."
|
8
|
-
EXIT /B 1
|
9
|
-
)
|
10
|
-
|
11
|
-
|
12
|
-
IF "%OCI_SDK_PATH%" == "" (
|
13
|
-
ECHO "You should set the environment variable 'OCI_SDK_PATH'."
|
14
|
-
EXIT /B 1
|
15
|
-
)
|
16
|
-
|
17
|
-
IF "%MSVC_PATH%" == "" (
|
18
|
-
ECHO "You should set the environment variable 'MSVC_PATH'."
|
19
|
-
ECHO "For example : SET MSVC_PATH=C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC"
|
20
|
-
EXIT /B 1
|
21
|
-
)
|
22
|
-
|
23
|
-
IF "%MSSDK_PATH%" == "" (
|
24
|
-
ECHO "You should set the environment variable 'MSSDK_PATH'."
|
25
|
-
ECHO "For example : SET MSSDK_PATH=C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A"
|
26
|
-
EXIT /B 1
|
27
|
-
)
|
28
|
-
|
29
|
-
|
30
|
-
MKDIR ..\..\..\..\lib\embulk\win_x64
|
31
|
-
|
1
|
+
@ECHO OFF
|
2
|
+
|
3
|
+
REM Visual Studio and Oracle Instant Client SDK are requred.
|
4
|
+
REM You should set the environment variable 'PATH' to CL.exe(x86_amd64) of Visual Studio.
|
5
|
+
|
6
|
+
IF "%JAVA_HOME%" == "" (
|
7
|
+
ECHO "You should set the environment variable 'JAVA_HOME'."
|
8
|
+
EXIT /B 1
|
9
|
+
)
|
10
|
+
|
11
|
+
|
12
|
+
IF "%OCI_SDK_PATH%" == "" (
|
13
|
+
ECHO "You should set the environment variable 'OCI_SDK_PATH'."
|
14
|
+
EXIT /B 1
|
15
|
+
)
|
16
|
+
|
17
|
+
IF "%MSVC_PATH%" == "" (
|
18
|
+
ECHO "You should set the environment variable 'MSVC_PATH'."
|
19
|
+
ECHO "For example : SET MSVC_PATH=C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC"
|
20
|
+
EXIT /B 1
|
21
|
+
)
|
22
|
+
|
23
|
+
IF "%MSSDK_PATH%" == "" (
|
24
|
+
ECHO "You should set the environment variable 'MSSDK_PATH'."
|
25
|
+
ECHO "For example : SET MSSDK_PATH=C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A"
|
26
|
+
EXIT /B 1
|
27
|
+
)
|
28
|
+
|
29
|
+
|
30
|
+
MKDIR ..\..\..\..\lib\embulk\win_x64
|
31
|
+
|
32
32
|
CL /I"%MSSDK_PATH%\Include" /I"%MSVC_PATH%\include" /I"%OCI_SDK_PATH%\include" /I"%JAVA_HOME%\include" /I"%JAVA_HOME%\include\win32" /Zi /nologo /W3 /WX- /O2 /Oi /GL /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "EMBULKOUTPUTORACLE_EXPORTS" /D "_WINDLL" /D "_UNICODE" /D "UNICODE" /Gm- /EHsc /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Gd /errorReport:queue ..\common\embulk-output-oracle.cpp ..\common\dir-path-load.cpp dllmain.cpp /link /LIBPATH:"%MSVC_PATH%\lib\amd64" /LIBPATH:"%MSSDK_PATH%\Lib\x64" /LIBPATH:"%OCI_SDK_PATH%\lib\msvc" /INCREMENTAL:NO /NOLOGO /LIBPATH:"%OCI_SDK_PATH%\lib\msvc" /OUT:"..\..\..\..\lib\embulk\win_x64\embulk-output-oracle.dll" /DLL "oci.lib" "kernel32.lib" "user32.lib" "gdi32.lib" "winspool.lib" "comdlg32.lib" "advapi32.lib" "shell32.lib" "ole32.lib" "oleaut32.lib" "uuid.lib" "odbc32.lib" "odbccp32.lib" /SUBSYSTEM:WINDOWS /OPT:REF /OPT:ICF /LTCG /TLBID:1 /DYNAMICBASE /NXCOMPAT /MACHINE:X64 /ERRORREPORT:QUEUE
|
@@ -1,25 +1,25 @@
|
|
1
|
-
#pragma once
|
2
|
-
|
3
|
-
#include <SDKDDKVer.h>
|
4
|
-
|
5
|
-
#define WIN32_LEAN_AND_MEAN
|
6
|
-
|
7
|
-
#include <windows.h>
|
8
|
-
|
9
|
-
|
10
|
-
BOOL APIENTRY DllMain( HMODULE hModule,
|
11
|
-
DWORD ul_reason_for_call,
|
12
|
-
LPVOID lpReserved
|
13
|
-
)
|
14
|
-
{
|
15
|
-
switch (ul_reason_for_call)
|
16
|
-
{
|
17
|
-
case DLL_PROCESS_ATTACH:
|
18
|
-
case DLL_THREAD_ATTACH:
|
19
|
-
case DLL_THREAD_DETACH:
|
20
|
-
case DLL_PROCESS_DETACH:
|
21
|
-
break;
|
22
|
-
}
|
23
|
-
return TRUE;
|
24
|
-
}
|
25
|
-
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#include <SDKDDKVer.h>
|
4
|
+
|
5
|
+
#define WIN32_LEAN_AND_MEAN
|
6
|
+
|
7
|
+
#include <windows.h>
|
8
|
+
|
9
|
+
|
10
|
+
BOOL APIENTRY DllMain( HMODULE hModule,
|
11
|
+
DWORD ul_reason_for_call,
|
12
|
+
LPVOID lpReserved
|
13
|
+
)
|
14
|
+
{
|
15
|
+
switch (ul_reason_for_call)
|
16
|
+
{
|
17
|
+
case DLL_PROCESS_ATTACH:
|
18
|
+
case DLL_THREAD_ATTACH:
|
19
|
+
case DLL_THREAD_DETACH:
|
20
|
+
case DLL_PROCESS_DETACH:
|
21
|
+
break;
|
22
|
+
}
|
23
|
+
return TRUE;
|
24
|
+
}
|
25
|
+
|
@@ -1,39 +1,39 @@
|
|
1
|
-
|
2
|
-
Microsoft Visual Studio Solution File, Format Version 11.00
|
3
|
-
# Visual Studio 2010
|
4
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "embulk-output-oracle", "embulk-output-oracle.vcxproj", "{2284D821-588E-419F-8790-F5BCC12F93BD}"
|
5
|
-
EndProject
|
6
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "embulk-output-oracle-test", "..\..\..\test\cpp\win\embulk-output-oracle-test.vcxproj", "{C14B433B-122A-4BDB-BF50-0673A57E5716}"
|
7
|
-
ProjectSection(ProjectDependencies) = postProject
|
8
|
-
{2284D821-588E-419F-8790-F5BCC12F93BD} = {2284D821-588E-419F-8790-F5BCC12F93BD}
|
9
|
-
EndProjectSection
|
10
|
-
EndProject
|
11
|
-
Global
|
12
|
-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
13
|
-
Debug|Win32 = Debug|Win32
|
14
|
-
Debug|x64 = Debug|x64
|
15
|
-
Release|Win32 = Release|Win32
|
16
|
-
Release|x64 = Release|x64
|
17
|
-
EndGlobalSection
|
18
|
-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
19
|
-
{2284D821-588E-419F-8790-F5BCC12F93BD}.Debug|Win32.ActiveCfg = Debug|Win32
|
20
|
-
{2284D821-588E-419F-8790-F5BCC12F93BD}.Debug|Win32.Build.0 = Debug|Win32
|
21
|
-
{2284D821-588E-419F-8790-F5BCC12F93BD}.Debug|x64.ActiveCfg = Debug|x64
|
22
|
-
{2284D821-588E-419F-8790-F5BCC12F93BD}.Debug|x64.Build.0 = Debug|x64
|
23
|
-
{2284D821-588E-419F-8790-F5BCC12F93BD}.Release|Win32.ActiveCfg = Release|Win32
|
24
|
-
{2284D821-588E-419F-8790-F5BCC12F93BD}.Release|Win32.Build.0 = Release|Win32
|
25
|
-
{2284D821-588E-419F-8790-F5BCC12F93BD}.Release|x64.ActiveCfg = Release|x64
|
26
|
-
{2284D821-588E-419F-8790-F5BCC12F93BD}.Release|x64.Build.0 = Release|x64
|
27
|
-
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Debug|Win32.ActiveCfg = Debug|Win32
|
28
|
-
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Debug|Win32.Build.0 = Debug|Win32
|
29
|
-
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Debug|x64.ActiveCfg = Debug|x64
|
30
|
-
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Debug|x64.Build.0 = Debug|x64
|
31
|
-
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Release|Win32.ActiveCfg = Release|Win32
|
32
|
-
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Release|Win32.Build.0 = Release|Win32
|
33
|
-
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Release|x64.ActiveCfg = Release|x64
|
34
|
-
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Release|x64.Build.0 = Release|x64
|
35
|
-
EndGlobalSection
|
36
|
-
GlobalSection(SolutionProperties) = preSolution
|
37
|
-
HideSolutionNode = FALSE
|
38
|
-
EndGlobalSection
|
39
|
-
EndGlobal
|
1
|
+
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 11.00
|
3
|
+
# Visual Studio 2010
|
4
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "embulk-output-oracle", "embulk-output-oracle.vcxproj", "{2284D821-588E-419F-8790-F5BCC12F93BD}"
|
5
|
+
EndProject
|
6
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "embulk-output-oracle-test", "..\..\..\test\cpp\win\embulk-output-oracle-test.vcxproj", "{C14B433B-122A-4BDB-BF50-0673A57E5716}"
|
7
|
+
ProjectSection(ProjectDependencies) = postProject
|
8
|
+
{2284D821-588E-419F-8790-F5BCC12F93BD} = {2284D821-588E-419F-8790-F5BCC12F93BD}
|
9
|
+
EndProjectSection
|
10
|
+
EndProject
|
11
|
+
Global
|
12
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
13
|
+
Debug|Win32 = Debug|Win32
|
14
|
+
Debug|x64 = Debug|x64
|
15
|
+
Release|Win32 = Release|Win32
|
16
|
+
Release|x64 = Release|x64
|
17
|
+
EndGlobalSection
|
18
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
19
|
+
{2284D821-588E-419F-8790-F5BCC12F93BD}.Debug|Win32.ActiveCfg = Debug|Win32
|
20
|
+
{2284D821-588E-419F-8790-F5BCC12F93BD}.Debug|Win32.Build.0 = Debug|Win32
|
21
|
+
{2284D821-588E-419F-8790-F5BCC12F93BD}.Debug|x64.ActiveCfg = Debug|x64
|
22
|
+
{2284D821-588E-419F-8790-F5BCC12F93BD}.Debug|x64.Build.0 = Debug|x64
|
23
|
+
{2284D821-588E-419F-8790-F5BCC12F93BD}.Release|Win32.ActiveCfg = Release|Win32
|
24
|
+
{2284D821-588E-419F-8790-F5BCC12F93BD}.Release|Win32.Build.0 = Release|Win32
|
25
|
+
{2284D821-588E-419F-8790-F5BCC12F93BD}.Release|x64.ActiveCfg = Release|x64
|
26
|
+
{2284D821-588E-419F-8790-F5BCC12F93BD}.Release|x64.Build.0 = Release|x64
|
27
|
+
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Debug|Win32.ActiveCfg = Debug|Win32
|
28
|
+
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Debug|Win32.Build.0 = Debug|Win32
|
29
|
+
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Debug|x64.ActiveCfg = Debug|x64
|
30
|
+
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Debug|x64.Build.0 = Debug|x64
|
31
|
+
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Release|Win32.ActiveCfg = Release|Win32
|
32
|
+
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Release|Win32.Build.0 = Release|Win32
|
33
|
+
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Release|x64.ActiveCfg = Release|x64
|
34
|
+
{C14B433B-122A-4BDB-BF50-0673A57E5716}.Release|x64.Build.0 = Release|x64
|
35
|
+
EndGlobalSection
|
36
|
+
GlobalSection(SolutionProperties) = preSolution
|
37
|
+
HideSolutionNode = FALSE
|
38
|
+
EndGlobalSection
|
39
|
+
EndGlobal
|
@@ -1,176 +1,176 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
-
<ItemGroup Label="ProjectConfigurations">
|
4
|
-
<ProjectConfiguration Include="Debug|Win32">
|
5
|
-
<Configuration>Debug</Configuration>
|
6
|
-
<Platform>Win32</Platform>
|
7
|
-
</ProjectConfiguration>
|
8
|
-
<ProjectConfiguration Include="Debug|x64">
|
9
|
-
<Configuration>Debug</Configuration>
|
10
|
-
<Platform>x64</Platform>
|
11
|
-
</ProjectConfiguration>
|
12
|
-
<ProjectConfiguration Include="Release|Win32">
|
13
|
-
<Configuration>Release</Configuration>
|
14
|
-
<Platform>Win32</Platform>
|
15
|
-
</ProjectConfiguration>
|
16
|
-
<ProjectConfiguration Include="Release|x64">
|
17
|
-
<Configuration>Release</Configuration>
|
18
|
-
<Platform>x64</Platform>
|
19
|
-
</ProjectConfiguration>
|
20
|
-
</ItemGroup>
|
21
|
-
<PropertyGroup Label="Globals">
|
22
|
-
<ProjectGuid>{2284D821-588E-419F-8790-F5BCC12F93BD}</ProjectGuid>
|
23
|
-
<Keyword>Win32Proj</Keyword>
|
24
|
-
<RootNamespace>embulkoutputoracle</RootNamespace>
|
25
|
-
<ProjectName>embulk-output-oracle</ProjectName>
|
26
|
-
</PropertyGroup>
|
27
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
28
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
29
|
-
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
30
|
-
<UseDebugLibraries>true</UseDebugLibraries>
|
31
|
-
<CharacterSet>Unicode</CharacterSet>
|
32
|
-
</PropertyGroup>
|
33
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
34
|
-
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
35
|
-
<UseDebugLibraries>true</UseDebugLibraries>
|
36
|
-
<CharacterSet>Unicode</CharacterSet>
|
37
|
-
</PropertyGroup>
|
38
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
39
|
-
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
40
|
-
<UseDebugLibraries>false</UseDebugLibraries>
|
41
|
-
<WholeProgramOptimization>true</WholeProgramOptimization>
|
42
|
-
<CharacterSet>Unicode</CharacterSet>
|
43
|
-
</PropertyGroup>
|
44
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
45
|
-
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
46
|
-
<UseDebugLibraries>false</UseDebugLibraries>
|
47
|
-
<WholeProgramOptimization>true</WholeProgramOptimization>
|
48
|
-
<CharacterSet>Unicode</CharacterSet>
|
49
|
-
</PropertyGroup>
|
50
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
51
|
-
<ImportGroup Label="ExtensionSettings">
|
52
|
-
</ImportGroup>
|
53
|
-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
54
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
55
|
-
</ImportGroup>
|
56
|
-
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
57
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
58
|
-
</ImportGroup>
|
59
|
-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
60
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
61
|
-
</ImportGroup>
|
62
|
-
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
63
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
64
|
-
</ImportGroup>
|
65
|
-
<PropertyGroup Label="UserMacros" />
|
66
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
67
|
-
<LinkIncremental>true</LinkIncremental>
|
68
|
-
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
|
69
|
-
</PropertyGroup>
|
70
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
71
|
-
<LinkIncremental>true</LinkIncremental>
|
72
|
-
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
|
73
|
-
</PropertyGroup>
|
74
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
75
|
-
<LinkIncremental>false</LinkIncremental>
|
76
|
-
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
|
77
|
-
</PropertyGroup>
|
78
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
79
|
-
<LinkIncremental>false</LinkIncremental>
|
80
|
-
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
|
81
|
-
</PropertyGroup>
|
82
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
83
|
-
<ClCompile>
|
84
|
-
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
85
|
-
<WarningLevel>Level3</WarningLevel>
|
86
|
-
<Optimization>Disabled</Optimization>
|
87
|
-
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;EMBULKOUTPUTORACLE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
88
|
-
<AdditionalIncludeDirectories>$(OCI_SDK_PATH)\include;$(JAVA_HOME)\include;$(JAVA_HOME)\include\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
89
|
-
</ClCompile>
|
90
|
-
<Link>
|
91
|
-
<SubSystem>Windows</SubSystem>
|
92
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
93
|
-
<AdditionalLibraryDirectories>$(OCI_SDK_PATH)\lib\msvc;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
94
|
-
<OutputFile>..\..\..\..\lib\$(TargetName)$(TargetExt)</OutputFile>
|
95
|
-
</Link>
|
96
|
-
</ItemDefinitionGroup>
|
97
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
98
|
-
<ClCompile>
|
99
|
-
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
100
|
-
<WarningLevel>Level3</WarningLevel>
|
101
|
-
<Optimization>Disabled</Optimization>
|
102
|
-
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;EMBULKOUTPUTORACLE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
103
|
-
<AdditionalIncludeDirectories>$(OCI_SDK_PATH)\include;$(JAVA_HOME)\include;$(JAVA_HOME)\include\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
104
|
-
</ClCompile>
|
105
|
-
<Link>
|
106
|
-
<SubSystem>Windows</SubSystem>
|
107
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
108
|
-
<AdditionalLibraryDirectories>$(OCI_SDK_PATH)\lib\msvc;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
109
|
-
<AdditionalDependencies>oci.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
110
|
-
<OutputFile>..\..\..\..\lib\embulk\win_x64\$(TargetName)$(TargetExt)</OutputFile>
|
111
|
-
</Link>
|
112
|
-
</ItemDefinitionGroup>
|
113
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
114
|
-
<ClCompile>
|
115
|
-
<WarningLevel>Level3</WarningLevel>
|
116
|
-
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
117
|
-
<Optimization>MaxSpeed</Optimization>
|
118
|
-
<FunctionLevelLinking>true</FunctionLevelLinking>
|
119
|
-
<IntrinsicFunctions>true</IntrinsicFunctions>
|
120
|
-
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;EMBULKOUTPUTORACLE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
121
|
-
<AdditionalIncludeDirectories>$(OCI_SDK_PATH)\include;$(JAVA_HOME)\include;$(JAVA_HOME)\include\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
122
|
-
</ClCompile>
|
123
|
-
<Link>
|
124
|
-
<SubSystem>Windows</SubSystem>
|
125
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
126
|
-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
127
|
-
<OptimizeReferences>true</OptimizeReferences>
|
128
|
-
<OutputFile>..\..\..\..\lib\$(TargetName)$(TargetExt)</OutputFile>
|
129
|
-
</Link>
|
130
|
-
</ItemDefinitionGroup>
|
131
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
132
|
-
<ClCompile>
|
133
|
-
<WarningLevel>Level3</WarningLevel>
|
134
|
-
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
135
|
-
<Optimization>MaxSpeed</Optimization>
|
136
|
-
<FunctionLevelLinking>true</FunctionLevelLinking>
|
137
|
-
<IntrinsicFunctions>true</IntrinsicFunctions>
|
138
|
-
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;EMBULKOUTPUTORACLE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
139
|
-
<AdditionalIncludeDirectories>$(OCI_SDK_PATH)\include;$(JAVA_HOME)\include;$(JAVA_HOME)\include\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
140
|
-
</ClCompile>
|
141
|
-
<Link>
|
142
|
-
<SubSystem>Windows</SubSystem>
|
143
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
144
|
-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
145
|
-
<OptimizeReferences>true</OptimizeReferences>
|
146
|
-
<AdditionalLibraryDirectories>$(OCI_SDK_PATH)\lib\msvc;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
147
|
-
<AdditionalDependencies>oci.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
148
|
-
<OutputFile>..\..\..\..\lib\embulk\win_x64\$(TargetName)$(TargetExt)</OutputFile>
|
149
|
-
</Link>
|
150
|
-
</ItemDefinitionGroup>
|
151
|
-
<ItemGroup>
|
152
|
-
<ClCompile Include="..\common\dir-path-load.cpp" />
|
153
|
-
<ClCompile Include="..\common\embulk-output-oracle.cpp" />
|
154
|
-
<ClCompile Include="dllmain.cpp">
|
155
|
-
<CompileAsManaged Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</CompileAsManaged>
|
156
|
-
<CompileAsManaged Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</CompileAsManaged>
|
157
|
-
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
158
|
-
</PrecompiledHeader>
|
159
|
-
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
160
|
-
</PrecompiledHeader>
|
161
|
-
<CompileAsManaged Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</CompileAsManaged>
|
162
|
-
<CompileAsManaged Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</CompileAsManaged>
|
163
|
-
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
164
|
-
</PrecompiledHeader>
|
165
|
-
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
166
|
-
</PrecompiledHeader>
|
167
|
-
</ClCompile>
|
168
|
-
</ItemGroup>
|
169
|
-
<ItemGroup>
|
170
|
-
<ClInclude Include="..\common\dir-path-load.h" />
|
171
|
-
<ClInclude Include="..\common\org_embulk_output_oracle_oci_OCI.h" />
|
172
|
-
</ItemGroup>
|
173
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
174
|
-
<ImportGroup Label="ExtensionTargets">
|
175
|
-
</ImportGroup>
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<ItemGroup Label="ProjectConfigurations">
|
4
|
+
<ProjectConfiguration Include="Debug|Win32">
|
5
|
+
<Configuration>Debug</Configuration>
|
6
|
+
<Platform>Win32</Platform>
|
7
|
+
</ProjectConfiguration>
|
8
|
+
<ProjectConfiguration Include="Debug|x64">
|
9
|
+
<Configuration>Debug</Configuration>
|
10
|
+
<Platform>x64</Platform>
|
11
|
+
</ProjectConfiguration>
|
12
|
+
<ProjectConfiguration Include="Release|Win32">
|
13
|
+
<Configuration>Release</Configuration>
|
14
|
+
<Platform>Win32</Platform>
|
15
|
+
</ProjectConfiguration>
|
16
|
+
<ProjectConfiguration Include="Release|x64">
|
17
|
+
<Configuration>Release</Configuration>
|
18
|
+
<Platform>x64</Platform>
|
19
|
+
</ProjectConfiguration>
|
20
|
+
</ItemGroup>
|
21
|
+
<PropertyGroup Label="Globals">
|
22
|
+
<ProjectGuid>{2284D821-588E-419F-8790-F5BCC12F93BD}</ProjectGuid>
|
23
|
+
<Keyword>Win32Proj</Keyword>
|
24
|
+
<RootNamespace>embulkoutputoracle</RootNamespace>
|
25
|
+
<ProjectName>embulk-output-oracle</ProjectName>
|
26
|
+
</PropertyGroup>
|
27
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
28
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
29
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
30
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
31
|
+
<CharacterSet>Unicode</CharacterSet>
|
32
|
+
</PropertyGroup>
|
33
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
34
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
35
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
36
|
+
<CharacterSet>Unicode</CharacterSet>
|
37
|
+
</PropertyGroup>
|
38
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
39
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
40
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
41
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
42
|
+
<CharacterSet>Unicode</CharacterSet>
|
43
|
+
</PropertyGroup>
|
44
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
45
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
46
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
47
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
48
|
+
<CharacterSet>Unicode</CharacterSet>
|
49
|
+
</PropertyGroup>
|
50
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
51
|
+
<ImportGroup Label="ExtensionSettings">
|
52
|
+
</ImportGroup>
|
53
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
54
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
55
|
+
</ImportGroup>
|
56
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
57
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
58
|
+
</ImportGroup>
|
59
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
60
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
61
|
+
</ImportGroup>
|
62
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
63
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
64
|
+
</ImportGroup>
|
65
|
+
<PropertyGroup Label="UserMacros" />
|
66
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
67
|
+
<LinkIncremental>true</LinkIncremental>
|
68
|
+
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
|
69
|
+
</PropertyGroup>
|
70
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
71
|
+
<LinkIncremental>true</LinkIncremental>
|
72
|
+
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
|
73
|
+
</PropertyGroup>
|
74
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
75
|
+
<LinkIncremental>false</LinkIncremental>
|
76
|
+
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
|
77
|
+
</PropertyGroup>
|
78
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
79
|
+
<LinkIncremental>false</LinkIncremental>
|
80
|
+
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
|
81
|
+
</PropertyGroup>
|
82
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
83
|
+
<ClCompile>
|
84
|
+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
85
|
+
<WarningLevel>Level3</WarningLevel>
|
86
|
+
<Optimization>Disabled</Optimization>
|
87
|
+
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;EMBULKOUTPUTORACLE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
88
|
+
<AdditionalIncludeDirectories>$(OCI_SDK_PATH)\include;$(JAVA_HOME)\include;$(JAVA_HOME)\include\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
89
|
+
</ClCompile>
|
90
|
+
<Link>
|
91
|
+
<SubSystem>Windows</SubSystem>
|
92
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
93
|
+
<AdditionalLibraryDirectories>$(OCI_SDK_PATH)\lib\msvc;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
94
|
+
<OutputFile>..\..\..\..\lib\$(TargetName)$(TargetExt)</OutputFile>
|
95
|
+
</Link>
|
96
|
+
</ItemDefinitionGroup>
|
97
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
98
|
+
<ClCompile>
|
99
|
+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
100
|
+
<WarningLevel>Level3</WarningLevel>
|
101
|
+
<Optimization>Disabled</Optimization>
|
102
|
+
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;EMBULKOUTPUTORACLE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
103
|
+
<AdditionalIncludeDirectories>$(OCI_SDK_PATH)\include;$(JAVA_HOME)\include;$(JAVA_HOME)\include\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
104
|
+
</ClCompile>
|
105
|
+
<Link>
|
106
|
+
<SubSystem>Windows</SubSystem>
|
107
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
108
|
+
<AdditionalLibraryDirectories>$(OCI_SDK_PATH)\lib\msvc;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
109
|
+
<AdditionalDependencies>oci.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
110
|
+
<OutputFile>..\..\..\..\lib\embulk\win_x64\$(TargetName)$(TargetExt)</OutputFile>
|
111
|
+
</Link>
|
112
|
+
</ItemDefinitionGroup>
|
113
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
114
|
+
<ClCompile>
|
115
|
+
<WarningLevel>Level3</WarningLevel>
|
116
|
+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
117
|
+
<Optimization>MaxSpeed</Optimization>
|
118
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
119
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
120
|
+
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;EMBULKOUTPUTORACLE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
121
|
+
<AdditionalIncludeDirectories>$(OCI_SDK_PATH)\include;$(JAVA_HOME)\include;$(JAVA_HOME)\include\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
122
|
+
</ClCompile>
|
123
|
+
<Link>
|
124
|
+
<SubSystem>Windows</SubSystem>
|
125
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
126
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
127
|
+
<OptimizeReferences>true</OptimizeReferences>
|
128
|
+
<OutputFile>..\..\..\..\lib\$(TargetName)$(TargetExt)</OutputFile>
|
129
|
+
</Link>
|
130
|
+
</ItemDefinitionGroup>
|
131
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
132
|
+
<ClCompile>
|
133
|
+
<WarningLevel>Level3</WarningLevel>
|
134
|
+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
135
|
+
<Optimization>MaxSpeed</Optimization>
|
136
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
137
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
138
|
+
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;EMBULKOUTPUTORACLE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
139
|
+
<AdditionalIncludeDirectories>$(OCI_SDK_PATH)\include;$(JAVA_HOME)\include;$(JAVA_HOME)\include\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
140
|
+
</ClCompile>
|
141
|
+
<Link>
|
142
|
+
<SubSystem>Windows</SubSystem>
|
143
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
144
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
145
|
+
<OptimizeReferences>true</OptimizeReferences>
|
146
|
+
<AdditionalLibraryDirectories>$(OCI_SDK_PATH)\lib\msvc;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
147
|
+
<AdditionalDependencies>oci.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
148
|
+
<OutputFile>..\..\..\..\lib\embulk\win_x64\$(TargetName)$(TargetExt)</OutputFile>
|
149
|
+
</Link>
|
150
|
+
</ItemDefinitionGroup>
|
151
|
+
<ItemGroup>
|
152
|
+
<ClCompile Include="..\common\dir-path-load.cpp" />
|
153
|
+
<ClCompile Include="..\common\embulk-output-oracle.cpp" />
|
154
|
+
<ClCompile Include="dllmain.cpp">
|
155
|
+
<CompileAsManaged Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</CompileAsManaged>
|
156
|
+
<CompileAsManaged Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</CompileAsManaged>
|
157
|
+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
158
|
+
</PrecompiledHeader>
|
159
|
+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
160
|
+
</PrecompiledHeader>
|
161
|
+
<CompileAsManaged Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</CompileAsManaged>
|
162
|
+
<CompileAsManaged Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</CompileAsManaged>
|
163
|
+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
164
|
+
</PrecompiledHeader>
|
165
|
+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
166
|
+
</PrecompiledHeader>
|
167
|
+
</ClCompile>
|
168
|
+
</ItemGroup>
|
169
|
+
<ItemGroup>
|
170
|
+
<ClInclude Include="..\common\dir-path-load.h" />
|
171
|
+
<ClInclude Include="..\common\org_embulk_output_oracle_oci_OCI.h" />
|
172
|
+
</ItemGroup>
|
173
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
174
|
+
<ImportGroup Label="ExtensionTargets">
|
175
|
+
</ImportGroup>
|
176
176
|
</Project>
|