C++ GUI database programming
开发者_运维百科What is the easiest
way for GUI database programming using C++ and where I can find a lot of tutorials and documentation?
I looked at Qt
, but didn't find good tutorials on doing that.
What do you think of MFC
? Any resources to recommend for this?
Any ideas?
Thanks.
If you are on Windows I would definitely use Windows Forms. Otherwise, as you have mentioned: QT (I find QT documentation to be pretty good).
If you're just targetting Windows, I'd seriously look at Embarcadero C++ Builder.
The C++ compiler is not as compliant as some, but the VCL framework is ideal for GUI development, and comes with database-aware components straight out of the box.
Since you mention MFC, I assume you're on Windows. Why not Visual Studio C++ Express? It has a GUI builder that creates basic WinForms. There's plenty of documentation and tutorials on MSDN, especially for database interaction (as long as your database is Access, SQL Server, etc). While not fully featured, it is free.
精彩评论