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?

link|improve this question

1  
You might have better luck with tutorials than actual books, doesn't seem much out there on paperback. – Anthony Forloney Feb 4 '10 at 3:13
5  
Use the SOCI library, that way you'll learn how to interface not only with mysql but oracle and all the other backends that the library supports. – Matthieu N. Feb 4 '10 at 6:32
feedback

4 Answers

up vote 4 down vote accepted

Here is some high quality online documention on MySQL++.

link|improve this answer
1  
Speaking as the MySQL++ maintainer, thanks for the link! I'd like to point out that the printable PDF version of the user manual is 92 letter size pages. Reformatted for book size pages with typical book margins would probably double that. So, it counts as a book. :) – Warren Young Feb 4 '10 at 11:20
feedback

I've always relied on the MySQL Manual, myself.

link|improve this answer
feedback

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/

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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