资源简介
C#将SQL Server备份bak文件恢复
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Diagnostics;
namespace resume
{
public partial class ComeBack : Form
{
public ComeBack()
{
InitializeComponent();
}
private void btnRevertPath_Click(object sender EventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
ofd.InitialDirectory = Application.StartupPath + “\\“;
ofd.Filter = “备份文件(*.bak)|*.bak“;
if (ofd.ShowDialog() == DialogResult.OK)
{
this.txtRevertPath.Text = ofd.FileName;
this.btnRevert.Enabled = true;
}
}
private void btnRevert_Click(object sender EventArgs e)
{
string connStr = “Data Source=.\\SQLEXPRESS;Initial Catalog=Master;user id=sa;Pwd=123“;
SqlConnection con = new SqlConnection(connStr);
try
{
con.Open();
string sql = ““;
sql = “use Master“;
SqlCommand com = new SqlCommand(sql con);
com.ExecuteNonQuery();
sql = “drop database GPRS“;
com = new SqlCommand(sql con);
com.ExecuteNonQuery();
sql = string.Format(“use master restore database {0} from disk = ‘{1}‘“ “GPRS“ txtRevertPath.Text);
com = new SqlCommand(sql con);
com.ExecuteNonQuery();
DialogResult result = MessageBox.Show(“数据库恢复成功!“ “提示“ MessageBoxButtons.OK MessageBoxIcon.Information);
if (result == DialogResult.Yes)
{
Process.Start(Application.StartupPath + “\\Hotel.exe“);
Application.Exit();
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
con.Close();
}
}
private void grbRevert_Enter(object sender EventArgs e)
{
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 20480 2010-06-27 16:23 resume\resume\bin\Debug\resume.exe
文件 44544 2010-06-27 16:23 resume\resume\bin\Debug\resume.pdb
文件 5632 2005-11-11 22:25 resume\resume\bin\Debug\resume.vshost.exe
..A.SH. 9 2010-04-21 19:51 resume\resume\bin\Debug\_desktop.ini
..A.SH. 9 2010-04-21 19:51 resume\resume\bin\_desktop.ini
文件 2357 2010-06-27 16:23 resume\resume\ComeBack.cs
文件 4767 2010-06-27 16:07 resume\resume\ComeBack.Designer.cs
文件 5814 2010-06-27 16:07 resume\resume\ComeBack.resx
..A.SH. 9 2010-04-21 19:51 resume\resume\obj\Debug\Refactor\_desktop.ini
文件 180 2010-06-27 16:07 resume\resume\obj\Debug\resume.ComeBack.resources
文件 845 2010-06-27 16:07 resume\resume\obj\Debug\resume.csproj.GenerateResource.Cache
文件 20480 2010-06-27 16:23 resume\resume\obj\Debug\resume.exe
文件 44544 2010-06-27 16:23 resume\resume\obj\Debug\resume.pdb
文件 180 2008-10-15 20:20 resume\resume\obj\Debug\resume.Properties.Resources.resources
..A.SH. 9 2010-04-21 19:51 resume\resume\obj\Debug\TempPE\_desktop.ini
..A.SH. 9 2010-04-21 19:51 resume\resume\obj\Debug\_desktop.ini
文件 264 2010-06-27 16:25 resume\resume\obj\resume.csproj.FileList.txt
文件 688 2010-01-21 16:49 resume\resume\obj\resume.csproj.FileListAbsolute.txt
..A.SH. 9 2010-04-21 19:51 resume\resume\obj\_desktop.ini
文件 468 2008-10-15 20:19 resume\resume\Program.cs
文件 1184 2008-10-15 20:18 resume\resume\Properties\AssemblyInfo.cs
文件 2866 2008-10-15 20:18 resume\resume\Properties\Resources.Designer.cs
文件 5612 2008-10-15 20:18 resume\resume\Properties\Resources.resx
文件 1089 2008-10-15 20:18 resume\resume\Properties\Settings.Designer.cs
文件 249 2008-10-15 20:18 resume\resume\Properties\Settings.settings
..A.SH. 9 2010-04-21 19:51 resume\resume\Properties\_desktop.ini
文件 3234 2008-10-15 20:20 resume\resume\resume.csproj
..A.SH. 9 2010-04-21 19:51 resume\resume\_desktop.ini
文件 907 2008-10-15 20:18 resume\resume.sln
..A..H. 14336 2010-06-27 17:42 resume\resume.suo
............此处省略13个文件信息
- 上一篇:用c#写的多线程求PI
- 下一篇:利用C#语言开发K-Means聚类算法
相关资源
- 利用C#语言开发K-Means聚类算法
- 用c#写的多线程求PI
- 矩阵常用算法C#程序
- 网页设计,c#,ico小图标,共851个!
- 用C#写的小程序
- WinForm验证码源码
- C#模仿Win7标准计算器
- Galil C#通讯链接范例
- C#制作一个简易画图工具
- 飞行棋代码
- 禁止商业用途RPG游戏C#(登陆注册,背
- Huffman树练习
- C# 数字键盘实现
- C# mysql、sqlserver连接demo源码
- winform自绘波形,鼠标滚轮滚动缩放波
- C#仿真飞行仪表盘
- C#动态添加数据到折线图
- C# winform 宿舍管理系统 ,vs2010开发,
- 基于C#邮件客户端
- C#酒店管理系统(报告+代码+讲义)
- 打砖块小游戏,C#源码
- C#贪吃蛇源码
- 豆瓣API接口获取书籍详细信息C#
- 粒子群算法求解TSP问题
- 网络TCPServer转串口UART源码
- C#实现坐标转换,七参数之间进行数据
- c#基础复习题含答案
- 三角高程近似平差C#
- 高斯正反算程序窗体程序,附计算
- C#开发webservice接口,对客户端post服务
评论
共有 条评论