Click here to Skip to main content
15,891,864 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have C# window application with back end as MySql. So now i want a silent installation of MySql with the installation of my application.How can i perform this?
Posted
Updated 16-Jul-15 22:05pm
v2

1 solution

I wouldn't suggest automating the installation of a database along with the application. Very often the database is installed on a completely different server. Also the installation is centralized meaning that the same database will be used by many users so the database is typically installed only once whereas the application may installed several times.

Having that said, if you have your reasons to embed the installation to your application set-up, have a look at https://dev.mysql.com/doc/refman/5.1/en/windows-installer-msi-quiet.html[^]
 
Share this answer
 
Comments
Member 11779110 17-Jul-15 5:37am    
Can i attach any methods to install MySql with the C# application installation?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900