Click here to Skip to main content
15,794,275 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have create the Setup & deployment in .NET of my application But I want to check the first MYSQL software installed or not then i will be allow to installed my application setup otherwise show message as first installed MYSQL setup then installed my application setup


thanks in advance....
Posted

1 solution

You shouldn't really install MySql: just like SQL Server, it is a multiuser database, and would normally be installed on a separate server, rather than on each individual users computer. If you chek the current PC for an installation, and it isn't present, you should not automatically assume it is correct to install it - the user may want to use a preexisting server based installation.
Otherwise, if you have five users installing your application, they would all get separate databases rather than sharing the same data. If you want to do that, then I would suggest using SqlCE or SQLite as they are only for stand alone database support and require no user administration.
 
Share this answer
 

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