Contents:
Search: |
WindowsIntroductionThis page describes which libraries to use on Windows. Look in the win32.mak makefiles in the sourcecode distribution in order to get a feel for how to use them. Also consult the Visual Studio documentation for how to add libraries to your project. Which libraries to useAlwaysYou will always need the following library:
PostgreSQLIf using PostgreSQL, you will also need the following libraries:
libpq.lib and libpq.dll are PostgreSQL libraries, and are distributed with the Emdros PostgreSQL binaries. If your version of PostgreSQL does not match the version from which these libraries came in the binary distribution, follow the instructions in INSTALL.Win32 in the source distribution in order to build your own. libemdf.lib depends on libpq.lib. MySQLIf using MySQL, you will also need the following library:
In addition, you may need access to the MySQL header-files. mysqlclient.lib is a MySQL library. libemdf.lib depends on mysqlclient.lib. SQLite 2If using SQLite 2, you will also need the following library:
This is compiled automatically when you specify in the config.mak file that you want SQLite 2 as a backend. SQLite 3If using SQLite 3, you will also need the following library:
This is compiled automatically when you specify in the config.mak file that you want SQLite 3 as a backend. MQLIf using MQL, you will need the following libraries:
libmql.lib depends on libemdf.lib and libpcre_emdros.lib. HarvestIf using the Harvest library, you will need the following library:
libharvest.lib depends on libmql.lib and on libemdf.lib. UtilIf using the Emdros Utilities library, you will need the following library:
libutil_emdros.lib depends on libmql.lib and on libemdf.lib. Summary: PostgreSQLIf using PostgreSQL, you will need the following libraries:
Summary: MySQLIf using MySQL, you will need the following libraries:
Summary: SQLite 2If using SQLite 2, you will need the following libraries:
Summary: SQLite 3If using SQLite 3, you will need the following libraries:
|