I am very new to MySQL.

Linux.

I want to create a database in MySql and using a C program I would like to populate the data from a text file into the database.

I couldnt find much information on this :(

Is there any clear material on this? Can somebody please point me to the right direction?

Thanks.

link|improve this question

46% accept rate
feedback

3 Answers

up vote 2 down vote accepted

MySQL comes with a client library and an ODBC connector. The client library is documented here http://dev.mysql.com/doc/refman/5.5/en/c-api-functions.html, the ODBC library is here http://dev.mysql.com/doc/refman/5.5/en/connector-odbc.html

link|improve this answer
feedback

The C API library is distributed with MySQL and is the basis for most other language bindings. Everything you need should be in the MySQL manual:

http://dev.mysql.com/doc/refman/5.5/en/c.html

link|improve this answer
feedback

Google? This is the first entry I get by searching for "Accessing MySQL database from C": http://www.cyberciti.biz/tips/linux-unix-connect-mysql-c-api-program.html

link|improve this answer
Probably 99% of questions on SE sites can be answered by sufficient googling. Suggesting that as an answer is not helpful. The idea behind SO is to be better than Google for seeking answers to programming questions. – Dan Moulding Feb 12 '11 at 15:23
I disagree with your statement, and, anyway, I also provided a useful link. – Simone Feb 13 '11 at 13:15
feedback

Your Answer

 
or
required, but never shown

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