C# 启动 SQL Server 服务_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > C# 启动 SQL Server 服务

C# 启动 SQL Server 服务

 2017/12/1 11:04:51  yuchen_love  程序员俱乐部  我要评论(0)
  • 摘要:1//首先要添加System.ServiceProcess.dll引用2ServiceControllersc=newServiceController("MSSQLSERVER");34//判断服务是否已经关闭5if(sc.Status==ServiceControllerStatus.Stopped)6{7sc.Start();8MessageBox.Show("SQL数据库服务启动成功!","提示信息",MessageBoxButtons.OK,MessageBoxIcon
  • 标签:Server C# SQL 服务 启动
class="code_img_closed" src="/Upload/Images/2017120111/0015B68B3C38AA5B.gif" alt="">
 1  //首先要添加 System.ServiceProcess.dll  引用
 2             ServiceController sc = new ServiceController("MSSQLSERVER");
 3 
 4             //判断服务是否已经关闭
 5             if (sc.Status == ServiceControllerStatus.Stopped)
 6             {
 7                 sc.Start();
 8                 MessageBox.Show("SQL数据库服务启动成功!", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Information);
 9             }
10 
11             //判断服务是否已经开启
12             if (sc.Status != ServiceControllerStatus.Stopped)
13             {
14                 sc.Stop();
15                 MessageBox.Show("SQL数据库服务成功关闭!", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Information);
16             }
logs_code_collapse">View Code

 

上一篇: openFace 人脸识别框架测试 下一篇: 没有下一篇了!
发表评论
用户名: 匿名