CreateDBStruct.cs 10.0 KB
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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
using System;
using System.Data.SqlClient;
using System.IO;
using System.Data;

namespace ServiceManager
{
	/// <summary>
	/// Class1 的摘要说明。
	/// </summary>
	public class CreateDBStruct
	{	
		private System.Data.SqlClient.SqlConnection DBConnection = null;
		
		/// <summary>
		/// 构造函数(无参数)
		/// </summary>
		public CreateDBStruct()
		{
			
		}
		/// <summary>
		/// 构造函数(重载)
		/// </summary>
		/// <param name="sqlConnection">数据库链接</param>
		/// <returns></returns>
		public CreateDBStruct(System.Data.SqlClient.SqlConnection sqlConnection)
		{	
			try
			{
				AddConnection(sqlConnection);
			}
			catch(Exception ex)
			{
				throw ex;
			}

		}
		
		/// <summary>
		/// 为类的数据库连接变量赋值
		/// </summary>
		/// <param name="sqlConnection">数据库链接</param>
		/// <returns></returns>
		public void AddConnection(System.Data.SqlClient.SqlConnection sqlConnection)
		{
			try
			{
				if(sqlConnection == null)
				{
					throw new Exception("不能赋空实例");
				}
				else
				{
					DBConnection = sqlConnection;
					DBConnection.Open();
					DBConnection.ChangeDatabase("master");
				}
			}
			catch(Exception ex)
			{
				throw ex;
			}
		}
		/// <summary>
		/// 建立数据库
		/// </summary>
		/// <param name="DBName">数据库名</param>
		/// <returns></returns>
		public void CreateDataBase(string DBName)
		{
			try
			{
				CreateDataBase(DBName,this.DBConnection);
			}
			catch(Exception ex)
			{
				throw ex;
			}
		}

		/// <summary>
		/// 建立数据库(重载)
		/// </summary>
		/// <param name="DBName">数据库名</param>
		/// <param name="sqlConnection">数据库链接</param>
		/// <returns></returns>
		public void CreateDataBase(string DBName,System.Data.SqlClient.SqlConnection sqlConnection)
		{	
			try
			{	
				this.DBConnection = sqlConnection;

				if(this.DBConnection!=null)
				{
					this.ExecuteSql("","CREATE"+" DATABASE\""+DBName+"\"",DBConnection);
				}
			}
			catch(Exception ex)
			{
				throw ex;
			}
		
		
		
		}
		
		/// <summary>
		/// 利用文本建立数据表,建表的sql语句从文本导入
		/// </summary>
		/// <param name="DBName">数据库名</param>
		/// <param name="filename">文本文件名</param>
		/// <returns></returns>
		public void CreateDataTables(string DBName,string filename,string divider)
		{
			try
			{
				CreateDataTables(DBName,filename,divider,this.DBConnection);
		
			}
			catch(Exception ex)
			{
				throw ex;
			}
		}
	
		/// <summary>
		/// 利用文本建立数据表,建表的sql语句从文本导入(重载)
		/// </summary>
		/// <param name="DBName">数据库名</param>
		/// <param name="filename">文本文件名</param>
		/// <param name="sqlConnection">数据库链接</param>
		/// <returns></returns>
		public void CreateDataTables(string DBName,string filename,string divider,System.Data.SqlClient.SqlConnection sqlConnection)
		{
			string Whole = "",subSql="";
			this.AddConnection(sqlConnection);
			try
			{
				Whole = this.GetSql(filename);
				
				int index=0;
                if(!String.IsNullOrEmpty(divider))
				{
					while((index=Whole.IndexOf(divider,index))>=0)
					{
						if( ( Char.IsWhiteSpace(Whole[index-1]) )&&( Char.IsWhiteSpace(Whole[index+divider.Length]) ) )
						{
							subSql = Whole.Substring(0,index);
							this.ExecuteSql(DBName,subSql);
							Whole = Whole.Remove(0,index+divider.Length);
							index=0;
						}
						else
						{
							index++;
						}
					
					}
				}
				else
				{
					this.ExecuteSql(DBName,Whole);
				}
			}
			catch(Exception ex)
			{
				throw ex;
			}
		}

		/// <summary>
		/// 在指定的数据库中执行sql语句,是所有创建功能的基础
		/// </summary>
		/// <param name="DataBaseName">数据库名</param>
		/// <param name="Sql">要执行的脚本</param>
		/// <returns></returns>
		public int  ExecuteSql(string DataBaseName,string Sql)
		{
			int rownum=0;
			try
			{
				rownum = ExecuteSql(DataBaseName,Sql,this.DBConnection);
			}
			catch(Exception ex)
			{
				throw ex;
			}
			return rownum;
		}
		/// <summary>
		/// 在指定的数据库中执行sql语句(重载)
		/// </summary>
		/// <param name="DataBaseName">数据库名</param>
		/// <param name="Sql">要执行的脚本</param>
		/// <param name="sqlConnection">数据库链接</param>
		/// <returns></returns>
		public int ExecuteSql(string DataBaseName,string Sql,System.Data.SqlClient.SqlConnection sqlConnection)
		{	
			int rownum=0;
			this.DBConnection = sqlConnection;
			if(DBConnection.State == ConnectionState.Closed)
				DBConnection.Open();
			System.Data.SqlClient.SqlCommand Command = null;

			try
			{
				Command = new System.Data.SqlClient.SqlCommand(Sql,DBConnection);
				
					
				if(!String.IsNullOrEmpty(DataBaseName))
					Command.Connection.ChangeDatabase(DataBaseName);

				rownum = Command.ExecuteNonQuery();
			}
			catch(Exception ex)
			{
				throw ex;
			}
			finally
			{
				if(DBConnection.State == ConnectionState.Open)
					DBConnection.Close();
			}
			return rownum;
		}
		
		/// <summary>
		/// 读取指定文本中的sql脚本
		/// </summary>
		/// <param name="filename">文本文件名</param>
		/// <returns>读出的内容</returns>
		public string GetSql(string filename)
		{
			try
			{
				StreamReader reader = new StreamReader(filename,System.Text.Encoding.GetEncoding("GB2312"));
				string content = reader.ReadToEnd();
				reader.Close();
				return content;
			}
			catch(Exception ex)
			{
				throw ex;
			}
		}
		
		/// <summary>
		/// 读取指定文本中的sql脚本来创建脚本
		/// </summary>
		/// <param name="DBName">数据库名</param>
		/// <param name="filename">文本文件名</param>
		/// <param name="divider">分割符</param>
		/// <param name="sqlConnection">数据库链接</param>
		/// <returns>读出的内容</returns>
		public void CreateProcedures(string DBName,string filename,string divider,System.Data.SqlClient.SqlConnection sqlConnection)
		{
			string Whole = "",subSql="";
			this.AddConnection(sqlConnection);
			try
			{
				Whole = this.GetSql(filename);
				
				int index=0;
                if (!String.IsNullOrEmpty(divider))
				{
					while((index=Whole.IndexOf(divider,index))>=0)
					{
						if( ( Char.IsWhiteSpace(Whole[index-1]) )&&( Char.IsWhiteSpace(Whole[index+divider.Length]) ) )
						{
							subSql = Whole.Substring(0,index);
							this.ExecuteSql(DBName,subSql);
							Whole = Whole.Remove(0,index+divider.Length);
							index=0;
						}
						else
						{
							index++;
						}
					
					}
				}
				else
				{
					this.ExecuteSql(DBName,Whole);
				}
			}
			catch(Exception ex)
			{
				throw ex;
			}
		}
		public void CreateProcedures(string DBName,string filename,string divider)
		{
			try
			{
				CreateProcedures(DBName,filename,divider,this.DBConnection);
			}
			catch(Exception ex)
			{
				throw ex;
			}
		}
		public bool DBExisted(string DBName)
		{
			return DBExisted(DBName,this.DBConnection);
		}
		public bool DBExisted(string DBName,System.Data.SqlClient.SqlConnection sqlConnection)
		{
			bool result = false;
			
			try
			{
				result = this.SelectFrom("","select * from sysdatabases where name = '"+DBName+"'",sqlConnection);
			}
			catch(Exception ex)
			{
				result = false;
				throw ex;
			}
			finally
			{
				if(DBConnection.State == ConnectionState.Open)
					DBConnection.Close();
			}
			return result;
		}

		public bool LoginExisted(string LoginName)
		{
			return LoginExisted(LoginName,this.DBConnection);
		}
		public bool LoginExisted(string LoginName,System.Data.SqlClient.SqlConnection sqlConnection)
		{
			bool result = false;
			
			try
			{
				result = this.SelectFrom("","select * from syslogins where loginname = '"+LoginName+"'",sqlConnection);
			}
			catch(Exception ex)
			{
				result = false;				
				throw ex;
			}
			finally
			{
				if(DBConnection.State == ConnectionState.Open)
					DBConnection.Close();
			}
			return result;
		}

		public bool SelectFrom(string DBName,string SqlString)
		{
			return this.SelectFrom(DBName,SqlString,this.DBConnection);
		}
		
		public bool SelectFrom(string DBName,string SqlString,System.Data.SqlClient.SqlConnection sqlConnection)
		{
			bool result = false;
			string Sql ="";
			
			System.Data.SqlClient.SqlCommand Command = null;
			try
			{
				this.DBConnection = sqlConnection;
				if(DBConnection.State == ConnectionState.Closed)
					DBConnection.Open();
				if(!String.IsNullOrEmpty(DBName))
				{
					DBConnection.ChangeDatabase(DBName);
				}
				else
				{
					DBConnection.ChangeDatabase("master");
				}
				
				Sql = SqlString;
				Command = new System.Data.SqlClient.SqlCommand(Sql,DBConnection);
				
				object o=Command.ExecuteScalar();
				result = (o!=null);
			}
			catch(Exception ex)
			{
				result = false;
				throw ex;
			}
			finally
			{
				if(DBConnection.State == ConnectionState.Open)
					DBConnection.Close();
			}
			return result;
			
		}

		public bool DeleteLogin(string LoginName)
		{
			return DeleteLogin(LoginName,this.DBConnection);
		}
		public bool DeleteLogin(string LoginName,System.Data.SqlClient.SqlConnection sqlConnection)
		{
			bool result = false;
			string Sql ="";
			
			System.Data.SqlClient.SqlCommand Command = null;
			SqlDataAdapter sqlDA = null;
			try
			{
				this.DBConnection = sqlConnection;
				if(DBConnection.State == ConnectionState.Closed)
					DBConnection.Open();
				
				DataSet m_ds = new DataSet();
				Command = new System.Data.SqlClient.SqlCommand(Sql,DBConnection);
				DBConnection.ChangeDatabase("master");
				Sql="select name from sysdatabases";
				Command.CommandType = CommandType.Text;
				Command.CommandText = Sql;
				
				sqlDA = new SqlDataAdapter();
				sqlDA.SelectCommand = Command;
				sqlDA.Fill(m_ds);
				
				if(m_ds.Tables[0].Rows.Count==0)
				{
					result = true;
				}
				else
				{
					for(int i=0;i<m_ds.Tables[0].Rows.Count;i++)
					{
						if(this.SelectFrom(m_ds.Tables[0].Rows[i][0].ToString(),"select * from sysusers where name = '"+LoginName+"'"))
						{
							this.ExecuteSql(m_ds.Tables[0].Rows[i][0].ToString(),"exec sp_dropuser '"+LoginName+"'");
							result = true;
						}
					}
				}

				this.ExecuteSql("master","exec sp_droplogin '"+LoginName+"'");
			}
			catch(Exception ex)
			{
				result = false;
				throw ex;
			}
			finally
			{
				if(DBConnection.State == ConnectionState.Open)
					DBConnection.Close();
			}
			return result;
		}

	}
}