bklLiudl
2024-07-23 6a22198db966e3e836e14a0d4187529fe05afbd9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
using SQLDMO;
using System.Data;
using System.Data.SqlClient;
 
namespace WMS.DataBase
{
    public class SqlServerBackup
    {
        private string database;
        private string server;
        private string uid;
        private string pwd;
 
        public string Database
        {
            get
            {
                return this.database;
            }
            set
            {
                this.database = value;
            }
        }
 
        public string Server
        {
            get
            {
                return this.server;
            }
            set
            {
                this.server = value;
            }
        }
 
        public string Pwd
        {
            get
            {
                return this.pwd;
            }
            set
            {
                this.pwd = value;
            }
        }
 
        public string Uid
        {
            get
            {
                return this.uid;
            }
            set
            {
                this.uid = value;
            }
        }
 
        public bool DbBackup(string url)
        {
            Backup oBackup = new BackupClass();
            SQLServer oSQLServer = new SQLServerClass();
            bool result;
            try
            {
                oSQLServer.LoginSecure = false;
                oSQLServer.Connect(this.server, this.uid, this.pwd);
                oBackup.Action = SQLDMO_BACKUP_TYPE.SQLDMOBackup_Database;
                oBackup.Database = this.database;
                oBackup.Files = url;
                oBackup.BackupSetName = this.database;
                oBackup.BackupSetDescription = "数据库备份";
                oBackup.Initialize = true;
                oBackup.SQLBackup(oSQLServer);
                result = true;
            }
            catch
            {
                result = false;
            }
            finally
            {
                oSQLServer.DisConnect();
            }
            return result;
        }
 
        public bool DbRestore(string url)
        {
            bool result;
            if (!this.exepro())
            {
                result = false;
            }
            else
            {
                Restore oRestore = new RestoreClass();
                SQLServer oSQLServer = new SQLServerClass();
                try
                {
                    oSQLServer.LoginSecure = false;
                    oSQLServer.Connect(this.server, this.uid, this.pwd);
                    oRestore.Action = SQLDMO_RESTORE_TYPE.SQLDMORestore_Database;
                    oRestore.Database = this.database;
                    oRestore.Files = url;
                    oRestore.FileNumber = 1;
                    oRestore.ReplaceDatabase = true;
                    oRestore.SQLRestore(oSQLServer);
                    result = true;
                }
                catch
                {
                    result = false;
                }
                finally
                {
                    oSQLServer.DisConnect();
                }
            }
            return result;
        }
 
        private bool exepro()
        {
            SqlConnection conn = new SqlConnection(string.Concat(new string[]
            {
                "server=",
                this.server,
                ";uid=",
                this.uid,
                ";pwd=",
                this.pwd,
                ";database=master"
            }));
            SqlCommand cmd = new SqlCommand("killspid", conn);
            cmd.CommandType = CommandType.StoredProcedure;
            //cmd.Parameters.Add("@dbname", this.database);
            bool result;
            try
            {
                conn.Open();
                cmd.ExecuteNonQuery();
                result = true;
            }
            catch
            {
                result = false;
            }
            finally
            {
                conn.Close();
            }
            return result;
        }
    }
}