- Oracle C++ client using instantclient, using
MingW
- Because Oracle Instanclient provides library files for Visual C++(Visual Studio) and Borald C++, you need to create an additional library file to use it in
MingW(gcc, g++).
- Use gendef or another tool to extract the list of functions from the .dll file.
gendef oci.dll # Produces oci.def
-
Create a .a file based on the extracted .def file.
dlltool -d oci.def -l liboci.a # create liboci.a -
No *.lib files are required for this process. All you need is a *.DLL.
-
This software is provided under a dual licensing policy. Users can choose to use it under the terms of either the
GPL v3(GNU General Public License, Version 3) or aCommercial license. Depending on your purpose and requirements, please select the appropriate license. -
See LICENSE for more information.