ASP.NET에서 분산된 트랜잭션 사용
아이디어:
1. 프로젝트에서 System을 참조해야 합니다.Transactions 프로그램 세트
2. 사무 관리를 해야 하는 코드 방법: 시스템.Transactions.TransactionScope scop = new System.Transactions.TransactionScope()
3. 서비스 Distributed Transaction Coordinator를 시작해야 분산 트랜잭션이 정상적으로 작동합니다.
다음은 내가 쓴 예의 주요 코드이다.
// id
// id
ProductEntity entity = Product_BLLSub.Get_ProductEntity(int.Parse(id));
//
using (System.Transactions.TransactionScope scop = new System.Transactions.TransactionScope())
{
//
Product_BLLSub.Create_ProductDelete(int.Parse(id));
//
string thumphyPath = context.Server.MapPath("/upload/thum/") + entity.img_url;
string imgPhyPath = context.Server.MapPath("/upload/img/") + entity.img_url;
//
if (System.IO.File.Exists(thumphyPath))
{
System.IO.File.Delete(thumphyPath);
}
//
if (System.IO.File.Exists(imgPhyPath))
{
System.IO.File.Delete(imgPhyPath);
}
//
scop.Complete();
}
//
Response.Write(" ");
설명: 내가 데이터베이스를 조작하는 방법은 데이터베이스 데이터를 추출하여 실체 대상으로 전환한 다음에 실체 대상을 조작하여 데이터베이스를 조작하는 것이다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
작업 중 문제 해결 - (win 2003 asp. net) Session 과 페이지 전송 방법 으로 해결 방안 을 정상적으로 사용 할 수 없습니다.또한 F 는 처음에 우리 의 BP & IT 프로젝트 팀 이 Forms 폼 검증 을 사용 했다 고 판단 할 수 있 습 니 다. 페이지 를 뛰 어 넘 는 것 은http://hr.bingjun.cc/MyTask/MyTas...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.