I am just a budding developer in Java and now I need to build a stand alone application (not a web app but a client app which needs to run on the desktop) which needs to interact with a database. Could someone point me as to which technology/framework is best suited which would help me achieve this?
Is there a framework in Java which can help one to interface with both a simple database (such as MySQL) and help you create really good GUI which can be later converted to a Windows .exe executable?
A
JavaProgram can never be converted to an.exe. The output usually will be ajarFilewhich can be run on any
OSas long as you haveJDKon the system.You can use
Swingin JAVA for creating good GUI and can useMySql libraryfor JAVA to easily connect to MySQL.