22,294
社区成员
发帖
与我相关
我的任务
分享
string source="database connections";
using (TranscationScope scope=new TranscationScope(TranscationScope.Required))
{
using(SQLiteConnection cn =new SQLiteConnection(scource))
{
//do something in sql
//update three table
scope.Complete();
}
}