Mysql? Sqlite? ... What kind of database is better to conect with Visual C++?
I'm developing a software,wich i need to conect database with Visual C++ (VS2008). The problem is that when the software is finished i need to export all the project to another computers and i开发者_StackOverflow社区 must to include all the files and the database.
What kind of database i need? Mysql? Sqlite? ODBC? ...?
Thanks.
SQL Express is good choice - database is easy to export as it's just a single file. http://www.microsoft.com/sqlserver/en/us/editions/express.aspx
Note - I'm assuming this is some kind of demo application/coding assignment.
Note - also assuming non-mobile platform: SQL Express is good choice here as minimal changes required to refactor to use SQL Server if need be.
If the app is eventually going to be on a mobile platform then SQL-Lite.
精彩评论