我想从vb2010以编程方式启动MYSQL56服务。我写了一些代码来运行MySql。但它不起作用。并显示例外。我该如何开始这项服务? 我的代码是
Dim x As ServiceProcess.ServiceController = New ServiceProcess.ServiceController("MySQL56", My.Computer.Name)
If (x.Status.Equals(ServiceProcess.ServiceControllerStatus.Stopped)) Or (x.Status.Equals(ServiceProcess.ServiceControllerStatus.StopPending)) Then
x.Refresh()
x.Start()
x.WaitForStatus(ServiceProcess.ServiceControllerStatus.Running)
End If
例外是"无法在计算机上打开MySQL56服务' PERSONAL'"