(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Data.OracleClient / System.Data.OracleClient / OracleCommandBuilder.cs
blob9822246a434612719db39d7d0d407b9acd6a4088
1 //
2 // System.Data.Oracle.OracleCommandBuilder
3 //
4 // Author:
5 // Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // (C)2004 Novell Inc.
8 //
10 using System.ComponentModel;
11 using System.Data;
12 using System.Data.Common;
14 namespace System.Data.OracleClient
16 public sealed class OracleCommandBuilder : Component
18 #region Fields
20 OracleDataAdapter adapter;
21 string quotePrefix;
22 string quoteSuffix;
24 #endregion // Fields
26 #region Constructors
28 public OracleCommandBuilder ()
30 adapter = null;
31 quotePrefix = String.Empty;
32 quoteSuffix = String.Empty;
35 public OracleCommandBuilder (OracleDataAdapter adapter)
36 : this ()
38 this.adapter = adapter;
41 #endregion // Constructors
43 #region Properties
45 [DefaultValue (null)]
46 public OracleDataAdapter DataAdapter {
47 get {
48 return adapter;
50 set {
51 adapter = value;
55 [BrowsableAttribute (false)]
56 [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
57 public string QuotePrefix {
58 get {
59 return quotePrefix;
61 set {
62 quotePrefix = value;
66 [BrowsableAttribute (false)]
67 [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
68 public string QuoteSuffix {
69 get {
70 return quoteSuffix;
72 set {
73 quoteSuffix = value;
77 #endregion // Properties
79 #region Methods
81 public static void DeriveParameters (OracleCommand command)
83 throw new NotImplementedException ();
86 [MonoTODO]
87 protected override void Dispose (bool disposing)
89 throw new NotImplementedException ();
92 [MonoTODO]
93 public OracleCommand GetDeleteCommand ()
95 throw new NotImplementedException ();
98 [MonoTODO]
99 public OracleCommand GetInsertCommand ()
101 throw new NotImplementedException ();
104 [MonoTODO]
105 public OracleCommand GetUpdateCommand ()
107 throw new NotImplementedException ();
110 [MonoTODO]
111 public void RefreshSchema ()
113 throw new NotImplementedException ();
116 #endregion // Methods