how to handle database using c++?
i mean attach a database to c++ program and then access it and perform different actions like insert new data, delete old data, or look at the database
Have tough time ahead :D Sample http://www.suite101.com/content/using-a-mysql-databases-with-c-a70097
For implementing a SQL database and 'using' it via C++ for example, you can take a look at SQlite. [ http://www.sqlite.org/ ] The documentation is well-written and the whole thing is pretty straightforward. Especially if you're a beginner, it's quite easy to handle it. :-)
try looking into 'Qt' -> you won't regret it! :)
@Jinex2011:QT is gui binding library ,what does it has to do with database,
http://www.mysql.com/downloads/connector/cpp/ If you install MySQL and then this connector, you should be good to go. Be sure to read the documentation though.
Join our real-time social learning platform and learn together with your friends!