What database system should a beginner in the C language use? Can I use MySQL? Thanks
|
feedback
|
|
You can use SQLite, MySQL, PostgreSQL, or any other DBMS with a C language binding. | |||
|
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 | ||||
|
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. | |||
|
feedback
|
|
Thanks a lot.. I didn't know that all SQL database systems have support for c language. | ||||
|
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. | |||
|
feedback
|