Not a generic introduction to MySql. I have one of those and also a PHP & MySql book.
What's a good one to learn the C/C++ API? Or do I even need a book for that? Maybe it would be overkill?
Not a generic introduction to MySql. I have one of those and also a PHP & MySql book.
What's a good one to learn the C/C++ API? Or do I even need a book for that? Maybe it would be overkill?
Beginning Linux Programming - http://www.amazon.co.uk/Beginning-Linux-Programming-Neil-Matthew/dp/0470147628/ref=sr_1_1?ie=UTF8&s=books&qid=1265253105&sr=8-1 covers the C MySQL API among other things - I'm a big fan of this particular book.
There's also: http://dev.mysql.com/doc/refman/5.0/en/c.html the MySQL API reference for C, which shows you pretty much every function you'll need in this area. An example is available here: http://www.ucl.ac.uk/is/mysql/c/
I would recommend some kind of general book on SQL, and simply use the MySQL connector reference to learn the APIs that are specific to MySQL. Actually, you probably don't even need a SQL book, because W3Schools has an excellent tutorial already available.