views:

161

answers:

4

what database system should a beginner in c language to use? Can i use MySQL? Thanks

+2  A: 

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

John Millikin
A: 

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.

Rob
A: 

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

aku
A: 

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

sasayins