Asp.net 在三層架構中事務的使用執行個體代碼

來源:互聯網
上載者:User

接觸3層也有一段時間了,瞭解水平一般,前段時間在想在三層中怎麼使用事務呢,放在哪呢?Sqlherper ? DAL? BLL?。然後我就瘋狂的百度,好幾次都是未果(因為做的都是小項目,不用事務也關係不大),今天我再次查時,好好的看了csdn上的以討論,http://topic.csdn.net/u/20091101/19/f21697d7-8f0c-4eb3-8e59-d0fe2f0b04b0.html,結合前輩和高手們的意見,自己改了一個出來。我的想法是將事務邏輯寫在商務邏輯層,資料庫的處理還都是在SQLHELPER,BLL層通過事務SqlTransaction傳值訪問DAL,再訪問Sqlhelper。接下來是分塊的代碼。

Sqlhelper: 複製代碼 代碼如下:private static SqlConnection Cnn = new SqlConnection(DbConfig.ConnectionString);
#region 判讀SqlConnection 是否開啟串連 並開啟
/// <summary>
/// 判讀SqlConnection 是否開啟串連 並開啟
/// </summary>
/// <returns>返回SqlConnection</returns>
private static SqlConnection GetCnn()
{
if (Cnn.State == ConnectionState.Closed)
{
Cnn.Open();
}
return Cnn;
}
#endregion
#region 關閉資料庫連接
/// <summary>
/// 關閉資料庫連接
/// </summary>
public static void CloseCnn()
{
Cnn.Close();
}
#endregion
#region 產生一個事務並開始
/// <summary>
/// 產生一個事務並開始
/// </summary>
/// <returns>返回此事務</returns>
public static SqlTransaction BeginTransaction()
{
SqlTransaction tran = GetCnn().BeginTransaction();
return tran;
}
#endregion

DAL: 複製代碼 代碼如下:public bool test(int i,SqlTransaction tran)
{
string sql = "insert into [test]([item]) values(@i)";
SqlParameter[] paras=new SqlParameter[]{new SqlParameter("@i",i)};
return sqlhelper.ExecutenQuery(sql, paras, CommandType.Text, tran)>0;
}

BLL: 複製代碼 代碼如下:UserDAO userdao = new UserDAO();
public bool test()
{
using (SqlTransaction tran = SQLHelper.BeginTransaction())
{
try
{
userdao.test(2, tran);
userdao.test(3, tran);
tran.Commit(); return true;
}
catch
{
tran.Rollback();
return false;
}
finally
{
SQLHelper.CloseCnn();//關閉資料庫連接
}
}
}

上述代碼在此次測試中通過,若要用於真實項目中,請修改後再使用,還有本人水平一般,寫的不到之處請大家見諒。歡迎大家指導指正。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.