
August 23rd, 2004, 12:22 AM
|
|
Registered User
|
|
Join Date: Aug 2004
Location: PUNE INDIA
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
.NET Application Setup With MySql Server
Hello Guys,
I am trying to built a deployment project. and i would like to install MySql Database Client & server setup
as part of my setup. any help appriciated.
I am trying it using the code given below in custom action installer class module. I install mysql setup using Custom actions in
Deployment Project and In My Class check the condition for Mysql service to start. But I dodn't get the service just after install.
Dim myController AsNew System.ServiceProcess.ServiceController("MySql")
If myController.Status = ServiceControllerStatus.Stopped Then
myController.Start()
EndIf
Thanks in advance
|