// // System.Data.Oracle.OracleCommandBuilder // // Author: // Atsushi Enomoto // // (C)2004 Novell Inc. // using System.ComponentModel; using System.Data; using System.Data.Common; namespace System.Data.OracleClient { public sealed class OracleCommandBuilder : Component { #region Fields OracleDataAdapter adapter; string quotePrefix; string quoteSuffix; #endregion // Fields #region Constructors public OracleCommandBuilder () { adapter = null; quotePrefix = String.Empty; quoteSuffix = String.Empty; } public OracleCommandBuilder (OracleDataAdapter adapter) : this () { this.adapter = adapter; } #endregion // Constructors #region Properties [DataSysDescriptionAttribute ("The DataAdapter for which to automatically generate OracleCommands")] [DefaultValue (null)] public OracleDataAdapter DataAdapter { get { return adapter; } set { adapter = value; } } [BrowsableAttribute (false)] [DataSysDescriptionAttribute ("The prefix string wrapped around sql objects")] [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)] public string QuotePrefix { get { return quotePrefix; } set { quotePrefix = value; } } [BrowsableAttribute (false)] [DataSysDescriptionAttribute ("The suffix string wrapped around sql objects")] [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)] public string QuoteSuffix { get { return quoteSuffix; } set { quoteSuffix = value; } } #endregion // Properties #region Methods public static void DeriveParameters (OracleCommand command) { throw new NotImplementedException (); } [MonoTODO] protected override void Dispose (bool disposing) { throw new NotImplementedException (); } [MonoTODO] public OracleCommand GetDeleteCommand () { throw new NotImplementedException (); } [MonoTODO] public OracleCommand GetInsertCommand () { throw new NotImplementedException (); } [MonoTODO] public OracleCommand GetUpdateCommand () { throw new NotImplementedException (); } [MonoTODO] public void RefreshSchema () { throw new NotImplementedException (); } #endregion // Methods } }