.NET开发

本类阅读TOP10

·NHibernate快速指南(翻译)
·vs.net 2005中文版下载地址收藏
·【小技巧】一个判断session是否过期的小技巧
·VB/ASP 调用 SQL Server 的存储过程
·?dos下编译.net程序找不到csc.exe文件
·通过Web Services上传和下载文件
·学习笔记(补)《.NET框架程序设计(修订版)》--目录
·VB.NET实现DirectDraw9 (2) 动画
·VB.NET实现DirectDraw9 (1) 托管的DDraw
·建站框架规范书之——文件命名

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
三层架构之数据库访问层完全篇(C#)

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

using System;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;

namespace DbBase
{

 public abstract class Base
 {

  #region "Fields of base calss"

  protected static string strConn = ConfigurationSettings.AppSettings["strConnection"];

  protected static string strSQL;

  #endregion
  

  #region "Properties of base class"
    }

  #endregion


  #region "Functions of base class"
  public Base()
  {
   //
   // TODO: Add constructor logic here
   //
  }

  /// <summary>
  /// executing SQL commands
  /// </summary>
  /// <param name="strSQL">string</param>
  /// <returns>return int</returns>
  protected static int ExecuteSql(string strSQL)
  {
   SqlConnection myCn = new SqlConnection(strConn);   
   SqlCommand myCmd = new SqlCommand(strSQL,myCn);
   try
   {
    myCn.Open();
    myCmd.ExecuteNonQuery();
    return 0;
   }
   catch(System.Data.SqlClient.SqlException e)
   {    
    throw new Exception(e.Message);
   }
   finally
   {
    myCmd.Dispose();
    myCn.Close();
   }
  }


  /// <summary>
  ///executing SQL commands
  /// </summary>
  /// <param name="strSQL">要执行的SQL语句,为字符串类型string</param>
  /// <returns>返回执行情况,整形int</returns>
  protected static int ExecuteSqlEx(string strSQL)
  {
   SqlConnection myCn = new SqlConnection(strConn);   
   SqlCommand myCmd = new SqlCommand(strSQL,myCn);
   
   try
   {
    myCn.Open();    
    SqlDataReader myReader = myCmd.ExecuteReader();
    if(myReader.Read())
    {
     return 0;
    } 
    else
    {
     throw new Exception("Value Unavailable!");
    }
   }
   catch(System.Data.SqlClient.SqlException e)
   {        
    throw new Exception(e.Message);
   }
   finally
   {
    myCmd.Dispose();
    myCn.Close();
   }
  }


  /// <summary>
  /// get dataset
  /// </summary>
  /// <param name="strSQL">(string)</param>
  /// <returns>(DataSet)</returns>
  protected static DataSet ExecuteSql4Ds(string strSQL)
  {
   SqlConnection myCn = new SqlConnection(strConn);   
   try
   {
    myCn.Open();
    SqlDataAdapter sda = new SqlDataAdapter(strSQL,myCn);
    DataSet ds = new DataSet("ds");
    sda.Fill(ds);
    return ds;
   }
   catch(System.Data.SqlClient.SqlException e)
   {    
    throw new Exception(e.Message);
   }
   finally
   {
    myCn.Close();
   }
  }


  /// <summary>
  /// get single value
  /// </summary>
  /// <param name="strSQL">(string)</param>
  /// <returns>(int)</returns>
  protected static int ExecuteSql4Value(string strSQL)
  {
   SqlConnection myCn = new SqlConnection(strConn);   
   SqlCommand myCmd = new SqlCommand(strSQL,myCn);
   try
   {
    myCn.Open();
    object r = myCmd.ExecuteScalar();
    if(Object.Equals(r,null))
    {
     throw new Exception("value unavailable!");
    }
    else
    {
     return (int)r;
    }    
   }
   catch(System.Data.SqlClient.SqlException e)
   {    
    throw new Exception(e.Message);
   }
   finally
   {
    myCmd.Dispose();
    myCn.Close();
   }
  }  


  /// <summary>
  /// get object
  /// </summary>
  /// <param name="strSQL">(string)</param>
  /// <returns>(object)</returns>
  protected static object ExecuteSql4ValueEx(string strSQL)
  {
   SqlConnection myCn = new SqlConnection(strConn);   
   SqlCommand myCmd = new SqlCommand(strSQL,myCn);
   try
   {
    myCn.Open();
    object r = myCmd.ExecuteScalar();
    if(Object.Equals(r,null))
    {
     throw new Exception("object unavailable!");
    }
    else
    {
     return r;
    }    
   }
   catch(System.Data.SqlClient.SqlException e)
   {    
    throw new Exception(e.Message);
   }
   finally
   {
    myCmd.Dispose();
    myCn.Close();
   }
  }


  /// <summary>
  /// execute multipul SQL commands
  /// </summary>
  /// <param name="strSQLs">string</param>
  /// <returns>int</returns>
  protected static int ExecuteSqls(string[] strSQLs)
  {
   SqlConnection myCn = new SqlConnection(strConn);   
   SqlCommand myCmd = new SqlCommand();   
   int j=strSQLs.Length;

   try
   {
    myCn.Open();    
   }
   catch(System.Data.SqlClient.SqlException e)
   {
    throw new Exception(e.Message);
   }
   SqlTransaction myTrans = myCn.BeginTransaction();

   try
   {           
    myCmd.Connection = myCn;    
    myCmd.Transaction = myTrans;

    foreach(string str in strSQLs)
    {
     myCmd.CommandText = str;
     myCmd.ExecuteNonQuery();
    }
    myTrans.Commit();
    return 0;
   }
   catch(System.Data.SqlClient.SqlException e)
   {   
    myTrans.Rollback();
    throw new Exception(e.Message);
   }
   finally
   {
    myCmd.Dispose();
    myCn.Close();
   }
  }

  #endregion
 }
}




相关文章

相关软件