CodeWeed
CodeWeed

Reputation: 1071

mysql connector for building POCO library

Which MySQL connector package should I download, in order to build POCO C++ library ? There are two options at https://dev.mysql.com/downloads/connector/

  1. Connector/C++
  2. Connector/C ?

Upvotes: 0

Views: 569

Answers (2)

acraig5075
acraig5075

Reputation: 10756

Building it (at least on Windows and using CMake) you will most definitely need Connector/C for only this one gives you the mysql.h and mysqlclient.lib that the FindMySQL.cmake refers to and tries to find. The C++ connector on the other hand does not give these required files.

Upvotes: 0

MSSC
MSSC

Reputation: 40

You will need the C++ MySQL Connector.

Upvotes: 1

Related Questions