**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Data / System.Data.OleDb / OleDbCommandBuilder.cs
blobc86e1a06250a785c3563c82405071971f0074ac8
1 //
2 // System.Data.OleDb.OleDbCommandBuilder
3 //
4 // Author:
5 // Rodrigo Moya (rodrigo@ximian.com)
6 // Tim Coleman (tim@timcoleman.com)
7 //
8 // Copyright (C) Rodrigo Moya, 2002
9 // Copyright (C) Tim Coleman, 2002
13 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
15 // Permission is hereby granted, free of charge, to any person obtaining
16 // a copy of this software and associated documentation files (the
17 // "Software"), to deal in the Software without restriction, including
18 // without limitation the rights to use, copy, modify, merge, publish,
19 // distribute, sublicense, and/or sell copies of the Software, and to
20 // permit persons to whom the Software is furnished to do so, subject to
21 // the following conditions:
22 //
23 // The above copyright notice and this permission notice shall be
24 // included in all copies or substantial portions of the Software.
25 //
26 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
30 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
31 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
32 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 using System.ComponentModel;
36 using System.Data;
37 using System.Data.Common;
39 namespace System.Data.OleDb
41 /// <summary>
42 /// Provides a means of automatically generating single-table commands used to reconcile changes made to a DataSet with the associated database. This class cannot be inherited.
43 /// </summary>
44 public sealed class OleDbCommandBuilder : Component
46 #region Fields
48 OleDbDataAdapter adapter;
49 string quotePrefix;
50 string quoteSuffix;
52 #endregion // Fields
54 #region Constructors
56 public OleDbCommandBuilder ()
58 adapter = null;
59 quotePrefix = String.Empty;
60 quoteSuffix = String.Empty;
63 public OleDbCommandBuilder (OleDbDataAdapter adapter)
64 : this ()
66 this.adapter = adapter;
69 #endregion // Constructors
71 #region Properties
73 [DataSysDescriptionAttribute ("The DataAdapter for which to automatically generate OleDbCommands")]
74 [DefaultValue (null)]
75 public OleDbDataAdapter DataAdapter {
76 get {
77 return adapter;
79 set {
80 adapter = value;
84 [BrowsableAttribute (false)]
85 [DataSysDescriptionAttribute ("The prefix string wrapped around sql objects")]
86 [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
87 public string QuotePrefix {
88 get {
89 return quotePrefix;
91 set {
92 quotePrefix = value;
96 [BrowsableAttribute (false)]
97 [DataSysDescriptionAttribute ("The suffix string wrapped around sql objects")]
98 [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
99 public string QuoteSuffix {
100 get {
101 return quoteSuffix;
103 set {
104 quoteSuffix = value;
108 #endregion // Properties
110 #region Methods
112 public static void DeriveParameters (OleDbCommand command)
114 throw new NotImplementedException ();
117 [MonoTODO]
118 protected override void Dispose (bool disposing)
120 throw new NotImplementedException ();
123 [MonoTODO]
124 public OleDbCommand GetDeleteCommand ()
126 throw new NotImplementedException ();
129 [MonoTODO]
130 public OleDbCommand GetInsertCommand ()
132 throw new NotImplementedException ();
135 [MonoTODO]
136 public OleDbCommand GetUpdateCommand ()
138 throw new NotImplementedException ();
141 [MonoTODO]
142 public void RefreshSchema ()
144 throw new NotImplementedException ();
147 #endregion // Methods