//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// markash
// laled
//------------------------------------------------------------------------------
namespace System.Data{
using System;
public interface IDbTransaction : IDisposable {
IDbConnection Connection { // MDAC 66655
get;
}
IsolationLevel IsolationLevel {
get;
}
void Commit();
//IDbCommand CreateCommand(); // MDAC 68309
void Rollback();
}
}