| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- //
- // System.Data.ProviderBase.DbParameterBase
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.Data.Common;
- namespace System.Data.ProviderBase {
- public abstract class DbParameterBase : DbParameter
- {
- #region Constructors
-
- [MonoTODO]
- protected DbParameterBase ()
- {
- }
- [MonoTODO]
- protected DbParameterBase (DbParameterBase source)
- {
- }
- #endregion // Constructors
- #region Properties
- [MonoTODO]
- protected object CoercedValue {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override ParameterDirection Direction {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override bool IsNullable {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override int Offset {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override string ParameterName {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override byte Precision {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override byte Scale {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override int Size {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override string SourceColumn {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override DataRowVersion SourceVersion {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override object Value {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public override void CopyTo (DbParameter destination)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void PropertyChanging ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected void ResetCoercedValue ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected void ResetScale ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected void SetCoercedValue ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected bool ShouldSerializePrecision ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected bool ShouldSerializeScale ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected bool ShouldSerializeSize ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override string ToString ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual byte ValuePrecision (object value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual byte ValueScale (object value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual int ValueSize (object value)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
- #endif
|