开发者

How to install mysql dynamically from within java?

开发者 https://www.devze.com 2023-04-13 05:53 出处:网络
I am currently trying to create an installer for a application that i created. And i want the installer to be able to run on mac, windows and linux for now. Hence, i chose to make my installer in java

I am currently trying to create an installer for a application that i created. And i want the installer to be able to run on mac, windows and linux for now. Hence, i chose to make my installer in java.

Now, the problem that i am facing is i have to install mysql from within java without giving the user all those unnecessary choices during the setup phase because it really necessary for them to know it. I know this 开发者_开发知识库can be done because while installing wamp, this is how mysql is installed. I only need to bother the users for the right things.

So, can somebody tell me how it can be done?

Thanks in Advance


For Mac and Linux I would let your installer start a shell script. However on Macs it is not common to have "installers". You should consider to just deliever binaries which the user can copy via drag&drop with his mouse. For that you usually only make an immage file (*dmg) which gets mounted by the finder and opens in its own finder window. You can have a symbolic link of the Applications folder on that *.dmg and a background image with some text: "drag here --->"


This might not be exactly what you're after, but how dependant are you on using mysql as the DBMS? If you use fairly standard SQL and this suits your application, maybe you could switch to Apache Derby? That will allow you to include the whole DB as a part of the installation, and completely invisible to the user.

See: http://db.apache.org/derby/

(caveat: I don't remember the details of the Apache license, but I'm assuming there's no issue there)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号