C产品在市场上有哪些独特优势?
- 内容介绍
- 文章标签
- 相关推荐
本文共计203个文字,预计阅读时间需要1分钟。
首先,需要添加System.ServiceProcess.dll引用,并使用ServiceController类来控制服务。以下是一个简化的代码示例,不超过100个字:
csharpusing System.ServiceProcess;
ServiceController sc=new ServiceController(MSSQLSERVER);if (sc.Status==ServiceControllerStatus.Stopped) { sc.Start(); MessageBox.Show(服务已启动);}
实例如下:
//首先要添加 System.ServiceProcess.dll 引用 ServiceController sc = new ServiceController("MSSQLSERVER"); //判断服务是否已经关闭 if (sc.Status == ServiceControllerStatus.Stopped) { sc.Start(); MessageBox.Show("SQL数据库服务启动成功!", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Information); } //判断服务是否已经开启 if (sc.Status != ServiceControllerStatus.Stopped) { sc.Stop(); MessageBox.Show("SQL数据库服务成功关闭!", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Information); }
以上这篇C# 启动 SQL Server 服务的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持易盾网络。
本文共计203个文字,预计阅读时间需要1分钟。
首先,需要添加System.ServiceProcess.dll引用,并使用ServiceController类来控制服务。以下是一个简化的代码示例,不超过100个字:
csharpusing System.ServiceProcess;
ServiceController sc=new ServiceController(MSSQLSERVER);if (sc.Status==ServiceControllerStatus.Stopped) { sc.Start(); MessageBox.Show(服务已启动);}
实例如下:
//首先要添加 System.ServiceProcess.dll 引用 ServiceController sc = new ServiceController("MSSQLSERVER"); //判断服务是否已经关闭 if (sc.Status == ServiceControllerStatus.Stopped) { sc.Start(); MessageBox.Show("SQL数据库服务启动成功!", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Information); } //判断服务是否已经开启 if (sc.Status != ServiceControllerStatus.Stopped) { sc.Stop(); MessageBox.Show("SQL数据库服务成功关闭!", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Information); }
以上这篇C# 启动 SQL Server 服务的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持易盾网络。

