What database system should a beginner in the C language use? Can I use MySQL? Thanks

link|improve this question

59% accept rate
feedback

5 Answers

up vote 5 down vote accepted

You can use SQLite, MySQL, PostgreSQL, or any other DBMS with a C language binding.

link|improve this answer
feedback

If you question is "What RDBMS do you recommend for beginner?" I agree that MySQL is not a bad choice. It's easy to install and configure. I think that most RDMS can be accessed from C code now days

link|improve this answer
feedback

MySQL has C bindings, so you could use that; libmysql usually installs the necessary headers and library files. You might also experiment with something like SQLite if you just want to mess about with a DBMS in C.

link|improve this answer
feedback

Thanks a lot.. I didn't know that all SQL database systems have support for c language.

link|improve this answer
feedback

As pointed out, most have C bindings, so would be suitable. MySQL is open source and has lots of online docs and books in print, so this is a good start.

SQLite has a growing number of fans but I have yet to use it. It would be much easier to setup/install so could be good for learning about tables and SQL.

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.