Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DbCommandSet.cs « System.Data.Common « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9318cb7fcf3b93f4a6ff8b5c2373caff5c1f5179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
//
// System.Data.Common.DbCommandSet
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2003
//

#if NET_1_2

using System.ComponentModel;
using System.Data;

namespace System.Data.Common {
	public abstract class DbCommandSet : IDisposable
	{
		#region Constructors

		protected DbCommandSet ()
		{
		}

		#endregion // Constructors

		#region Properties

		public abstract int CommandCount { get; }
		public abstract int CommandTimeout { get; set; }

		public DbConnection Connection {
			get { return DbConnection; }
			set { DbConnection = value; }
		}

		protected abstract DbConnection DbConnection { get; set; }
		protected abstract DbTransaction DbTransaction { get; set; }

		public DbTransaction Transaction {
			get { return DbTransaction; }
		}

		#endregion // Properties

		#region Methods

		public abstract void Append (DbCommand command);
		public abstract void Cancel ();
		public abstract void Clear ();
		public abstract void CopyToParameter (int commandIndex, int parameterIndex, DbParameter destination);
		public abstract void CopyToParameter (int commandIndex, string parameterName, DbParameter destination);
		public abstract void CopyToParameterCollection (int commandIndex, DbParameterCollection destination);
		public abstract void Dispose ();
		public abstract DbDataReader ExecuteDbDataReader (CommandBehavior behavior);
		public abstract int ExecuteNonQuery ();

		[MonoTODO]
		public DbDataReader ExecuteReader ()
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public DbDataReader ExecuteReader (CommandBehavior behavior)
		{
			throw new NotImplementedException ();
		}

		public abstract int GetParameterCount (int commandIndex);
		
		#endregion // Methods

	}
}

#endif