| 12345678910111213141516171819202122232425262728293031 |
- //
- // System.Data.OleDb.OleDbTransaction
- //
- // Author:
- // Rodrigo Moya ([email protected])
- //
- // Copyright (C) Rodrigo Moya, 2002
- //
- using System.Data;
- using System.Data.Common;
- namespace System.Data.OleDb
- {
- public sealed class OleDbTransaction : MarshalByRefObject,
- IDbTransaction, IDisposable
- {
- private OleDbConnection m_connection = null;
-
- protected OleDbTransaction (OleDbConnection cnc)
- {
- m_connection = null;
- }
- protected OleDbTransaction (OleDbConnection cnc,
- IsolationLevel level) : this (cnc)
- {
- /* FIXME: use 'level' parameter */
- }
- }
- }
|