Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RDMS for C language newbie? [closed]

What database should a beginner use in the C language?

Can I use MySQL?

Thanks

like image 821
domlao Avatar asked Sep 04 '08 00:09

domlao


2 Answers

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

  • SQLite In 5 Minutes Or Less
  • MySQL C API
  • PostgreSQL C API
like image 148
John Millikin Avatar answered Sep 21 '22 05:09

John Millikin


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

like image 22
aku Avatar answered Sep 24 '22 05:09

aku