OleDbTransaction.cs 586 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // System.Data.OleDb.OleDbTransaction
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // Copyright (C) Rodrigo Moya, 2002
  8. //
  9. using System.Data;
  10. using System.Data.Common;
  11. namespace System.Data.OleDb
  12. {
  13. public sealed class OleDbTransaction : MarshalByRefObject,
  14. IDbTransaction, IDisposable
  15. {
  16. private OleDbConnection m_connection = null;
  17. protected OleDbTransaction (OleDbConnection cnc)
  18. {
  19. m_connection = null;
  20. }
  21. protected OleDbTransaction (OleDbConnection cnc,
  22. IsolationLevel level) : this (cnc)
  23. {
  24. /* FIXME: use 'level' parameter */
  25. }
  26. }
  27. }