일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MS
- MSSQL
- 마이크로소프트
- 오라클
- attr()
- 윈도우
- windows
- 이클립스
- aspnet
- 태그를 입력해 주세요.
- 비주얼스튜디오
- c#
- ASP
- 엑셀
- 윈폼
- 리포팅서비스
- CONVERT()
- replace()
- Excel
- IIS
- javascript
- oracle
- DataGrid
- 프로시저
- 단축키
- microsoft
- Winform
- SSRS
- jQuery
- 자바스크립트
- Today
- Total
DJ메탈짱™의 Free Style
[C#] Enterprise Library를 이용한 트랜젝션 처리 본문
[Enterprise Library를 이용한 트랜젝션 처리]
public bool TransactionTest()
{
using (DbConnection connection = db.CreateConnection())
{
connection.Open();
DbTransaction transaction = connection.BeginTransaction();
try
{
// first
db.ExecuteNonQuery(firstCommand, transaction);
// second
db.ExecuteNonQuery(secondCommand, transaction);
// commit the transaction
transaction.Commit();
return true;
}
catch
{
// Rollback the transaction
transaction.Rollback();
throw;
}
connection.Close();
return true;
}
}
'일(job) > MS(Microsoft)' 카테고리의 다른 글
.NET Framework 다운로드 링크 (0) | 2015.12.04 |
---|---|
[C#] TextBox Width 속성설정하기(%) (0) | 2015.12.04 |
[ASP.NET] 'System.Configuration.ConfigurationSettings.AppSettings'은(는) 사용되지 않습니다. (0) | 2015.12.03 |
[ASP.NET] 웹 표준을 위한 코딩 문의 (ASP.NET 1.1) - FireFox (0) | 2015.12.03 |
[ASP.NET] Request URL정보에 한글이 포함되는 경우 - 인코딩/디코딩 (0) | 2015.12.03 |