Hello Patrick!
I am trying to connect COBOL to the MySQL Database. I
have used the C API to establish the conection to
MySQL. You have quoted that library file
mysqlclient.lib is enough.
But when I try to test the Connecton using VC++ editor
by writing a simpe C Program, the linking of
"libmysql.
Hello Patrick!
I am trying to connect COBOL to the MySQL Database. I
have used the C API to establish the conection to
MySQL. You have quoted that library file
mysqlclient.lib is enough.
But when I try to test the Connecton using VC++ editor
by writing a simpe C Program, the linking of
"libmysql.
Statically linking using C API only you will need mysqlclient.lib
For odbc interface you'll need to make odbc calls in your code and use
myodbc.dll (Install myodbc on the client).
You can mix calls, but why would you. I have found the C API to be the best
solution for us. We statically link fo