-----Original Message-----
From: Nobles Corporation [mailto:tech...@noblescorp.com]
Sent: Monday, March 27, 2000 3:50 PM
To: win...@lists.mysql.com
Subject: C API library 'libcmtd.lib'
I am trying to compile a C++ program under MicroSoft Visual C++ which
uses the C API functions for mySQL 3.22.32. I have included the
'mysqlclient.lib' in the link list, but get an
error on 'libcmtd.lib'. I cannot find this library in the
distribution. Is it available from another source? Anyone have any
sugestions.
Larry Nobles
lar...@noblescorp.com
Hi Larry,
That is simply your system C library. It should have come with VC++. The
"mt" means "multi-threaded", and the "d" means "debug". Go into
Project/Settings and select the Link tab. Then set the flag "/MTd". When
build a release, get rid of the "d".
-John