I'm looking for a C, C++, or Objective-C library that can connect to a MySQL database. I'm aware of libmysqlclient (GPL) and SQLAPI++ (non-GPL).

Are there any alternatives besides SQLAPI++ that can be included in a non-GPL project?

link|improve this question

Is LGPL okay? I'm assuming you just don't want the GPL to infect your code. – dauphic Mar 30 '11 at 21:16
Yes, LGPL is OK. – jlstrecker Mar 31 '11 at 20:45
I just wrote this github.com/ciaranj/MySqueakQl for anyone else who comes this way. – ciaranj Feb 21 at 18:54
feedback

2 Answers

up vote 1 down vote accepted

iODBC is BSD-licensed, and provides an ODBC client implementation.

The user could then install the MySQL Connector/ODBC to interface with the MySQL server.

link|improve this answer
feedback

Try SOCI or POCO. Both are under the Boost Software License.

EDIT: Indeed you are right. And it seems you're in a hot spot and would have to buy a MySQL license, at least according to the following

GPL and libmysqlclient

About MySQL++, GPL and LGPL

MySQL licensing and GPL

link|improve this answer
True, but both require libmysqlclient. – jlstrecker Mar 30 '11 at 23:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.