| 123456789101112131415161718192021222324252627282930313233 |
- //
- // System.Data.IDbTransaction.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Represents a transaction to be performed at a data source, and is implemented by .NET data providers that access relational databases.
- /// </summary>
- public interface IDbTransaction
- {
- void Commit()
- {
- }
- void Rollback()
- {
- }
-
- IsolationLevel IsolationLevel
- {
- get
- {
- }
- }
- }
- }
|