Can I use a multi-threaded application with the ODBC-ODBC Bridge on Linux?
Yes, but make sure you download a thread-safe version of the Easysoft ODBC-ODBC Bridge. The thread-safe distributions have -mt in the distribution name.
Don't use this ODBC-ODBC Bridge distribution unless you know that your application is threaded and linked with LinuxThreads.
When building your application, add the -pthread switch to gcc and do not use -lpthreads. Make sure you use thread-safe, reentrant versions of the library functions (gethostbyname_r and so on) and define _REENTRANT by adding -D_REENTRANT to your compile lines.