combine the C++ code for an algorithm with MySQL and UDFS in a single DLL/SO?
We developed a C++ class algorithm and code together with sqlite3.c and the sqlite C/C++ UDFs. Everything is combined into a single DLL/SO.
Now we would like to change from SQLite to MySQL to take advantage of MySQL's ability to do parallel writes on separate threads.
We would still like to combine our c++ algorithm class code, MySQL.c (I am not sure of the exact name) a开发者_如何学Gond the MySQL C/C++ UDFS into a single DLL/SO.
How can this be done?
精彩评论