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

PgSqlCommandBuilder.cs « Mono.Data.PostgreSqlClient « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2b028bc652399acda1325cc6b9228e1b0f0a309 (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
//
// System.Data.SqlClient.SqlCommandBuilder.cs
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//   Daniel Morgan (danmorg@sc.rr.com)
//
// (C) Ximian, Inc 2002
//

using System;
using System.Data;
using System.ComponentModel;

namespace System.Data.SqlClient {

	/// <summary>
	/// Builder of one command
	/// that will be used in manipulating a table for
	/// a DataSet that is assoicated with a database.
	/// </summary>
	public sealed class SqlCommandBuilder : Component {
		
		[MonoTODO]
		public SqlCommandBuilder() {

		}

		[MonoTODO]
		public SqlCommandBuilder(SqlDataAdapter adapter) {
		
		}

		[MonoTODO]
		public SqlDataAdapter DataAdapter {
			get {
				throw new NotImplementedException ();
			}
			
			set{
				throw new NotImplementedException ();
			}
		}

		[MonoTODO]
		public string QuotePrefix {
			get {
				throw new NotImplementedException ();
			} 
			
			set {
				throw new NotImplementedException ();
			}
		}

		[MonoTODO]
		public string QuoteSuffix {
			get {
				throw new NotImplementedException ();
			}
			
			set {
				throw new NotImplementedException ();
			}
		}

		[MonoTODO]
		public static void DeriveParameters(SqlCommand command) {
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public SqlCommand GetDeleteCommand() {
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public SqlCommand GetInsertCommand() {
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public SqlCommand GetUpdateCommand() {
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public void RefreshSchema() {
			throw new NotImplementedException ();
		}

		[MonoTODO]
		protected override void Dispose(bool disposing) {
			throw new NotImplementedException ();
		}

		[MonoTODO]
		~SqlCommandBuilder() {
			// FIXME: create destructor - release resources
		}
	}
}