| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- //
- // System.Data.Common.DbDataRecord.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002-2003
- //
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- namespace System.Data.Common {
- public class DbDataRecord : IDataRecord, ICustomTypeDescriptor
- {
- #region Fields
- SchemaInfo[] schema;
- object[] values;
- int fieldCount;
- FieldNameLookup lookup;
- #endregion
-
- #region Constructors
- #if NET_1_2
- [MonoTODO]
- public DbDataRecord (object[] values, PropertyDescriptorCollection descriptors, FieldNameLookup fieldNameLookup)
- {
- }
- [MonoTODO]
- public DbDataRecord (SchemaInfo[] schemaInfo, object[] values, PropertyDescriptorCollection descriptors, FieldNameLookup fieldNameLookup)
- {
- }
- #endif
- internal DbDataRecord (SchemaInfo[] schema, object[] values, FieldNameLookup lookup)
- {
- this.schema = schema;
- this.lookup = lookup;
- this.values = values;
- this.fieldCount = values.Length;
- }
- #endregion
- #region Properties
- public int FieldCount {
- get { return fieldCount; }
- }
- public object this [string name] {
- get { return this [GetOrdinal (name)]; }
- }
- [System.Runtime.CompilerServices.IndexerName("Item")]
- public object this [int index] {
- get { return GetValue (index); }
- }
- #endregion
- #region Methods
- public bool GetBoolean (int i)
- {
- return (bool) GetValue (i);
- }
- public byte GetByte (int i)
- {
- return (byte) GetValue (i);
- }
- public long GetBytes (int i, long dataIndex, byte[] buffer, int bufferIndex, int length)
- {
- object value = GetValue (i);
- if (!(value is byte []))
- throw new InvalidCastException ("Type is " + value.GetType ().ToString ());
-
- if ( buffer == null ) {
- // Return length of data
- return ((byte []) value).Length;
- }
- else {
- // Copy data into buffer
- Array.Copy ((byte []) value, (int) dataIndex, buffer, bufferIndex, length);
- return ((byte []) value).Length - dataIndex;
- }
- }
- public char GetChar (int i)
- {
- return (char) GetValue (i);
- }
- public long GetChars (int i, long dataIndex, char[] buffer, int bufferIndex, int length)
- {
- object value = GetValue (i);
- char [] valueBuffer;
-
- if (value is char[])
- valueBuffer = (char[])value;
- else if (value is string)
- valueBuffer = ((string)value).ToCharArray();
- else
- throw new InvalidCastException ("Type is " + value.GetType ().ToString ());
- if ( buffer == null ) {
- // Return length of data
- return valueBuffer.Length;
- }
- else {
- // Copy data into buffer
- Array.Copy (valueBuffer, (int) dataIndex, buffer, bufferIndex, length);
- return valueBuffer.Length - dataIndex;
- }
- }
- public IDataReader GetData (int i)
- {
- return (IDataReader) GetValue (i);
- }
- public string GetDataTypeName (int i)
- {
- return schema[i].DataTypeName;
- }
- public DateTime GetDateTime (int i)
- {
- return (DateTime) GetValue (i);
- }
- public decimal GetDecimal (int i)
- {
- return (decimal) GetValue (i);
- }
- public double GetDouble (int i)
- {
- return (double) GetValue (i);
- }
- public Type GetFieldType (int i)
- {
- return schema[i].FieldType;
- }
- public float GetFloat (int i)
- {
- return (float) GetValue (i);
- }
-
- public Guid GetGuid (int i)
- {
- return (Guid) GetValue (i);
- }
-
- public short GetInt16 (int i)
- {
- return (short) GetValue (i);
- }
-
- public int GetInt32 (int i)
- {
- return (int) GetValue (i);
- }
- public long GetInt64 (int i)
- {
- return (long) GetValue (i);
- }
- public string GetName (int i)
- {
- return (string) lookup [i];
- }
- #if NET_1_2
- [MonoTODO]
- public virtual object GetObjectRef (int i)
- {
- throw new NotImplementedException ();
- }
- #endif
- public int GetOrdinal (string name)
- {
- return lookup.IndexOf (name);
- }
- public string GetString (int i)
- {
- return (string) GetValue (i);
- }
- public object GetValue (int i)
- {
- if ((i < 0) || (i > fieldCount))
- throw new IndexOutOfRangeException();
- object value = values [i];
- if (value == null)
- value = DBNull.Value;
- return value;
- }
- public int GetValues (object[] values)
- {
- if(values == null)
- throw new ArgumentNullException("values");
-
- int count = values.Length > this.values.Length ? this.values.Length : values.Length;
- for(int i = 0; i < count; i++)
- values[i] = this.values[i];
- return count;
- }
- [MonoTODO]
- AttributeCollection ICustomTypeDescriptor.GetAttributes ()
- {
- return new AttributeCollection(null);
- }
- [MonoTODO]
- string ICustomTypeDescriptor.GetClassName ()
- {
- return "";
- }
- [MonoTODO]
- string ICustomTypeDescriptor.GetComponentName ()
- {
- return null;
- }
- [MonoTODO]
- TypeConverter ICustomTypeDescriptor.GetConverter ()
- {
- return null;
- }
- [MonoTODO]
- EventDescriptor ICustomTypeDescriptor.GetDefaultEvent ()
- {
- return null;
- }
- [MonoTODO]
- PropertyDescriptor ICustomTypeDescriptor.GetDefaultProperty ()
- {
- return null;
- }
- [MonoTODO]
- object ICustomTypeDescriptor.GetEditor (Type editorBaseType)
- {
- return null;
- }
- [MonoTODO]
- EventDescriptorCollection ICustomTypeDescriptor.GetEvents ()
- {
- return new EventDescriptorCollection(null);
- }
- [MonoTODO]
- EventDescriptorCollection ICustomTypeDescriptor.GetEvents (Attribute[] attributes)
- {
- return new EventDescriptorCollection(null);
- }
- [MonoTODO]
- PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties ()
- {
- DataColumnPropertyDescriptor[] descriptors =
- new DataColumnPropertyDescriptor[FieldCount];
- DataColumnPropertyDescriptor descriptor;
- DataColumn dataColumn;
- for(int col = 0; col < FieldCount; col++) {
- descriptor = new DataColumnPropertyDescriptor(
- GetName(col), col, null);
- descriptor.SetComponentType(typeof(DbDataRecord));
- descriptor.SetPropertyType(GetFieldType(col));
-
- descriptors[col] = descriptor;
- }
- return new PropertyDescriptorCollection (descriptors);
- }
- [MonoTODO]
- PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties (Attribute[] attributes)
- {
- PropertyDescriptorCollection descriptors;
- descriptors = ((ICustomTypeDescriptor) this).GetProperties ();
- // TODO: filter out descriptors which do not contain
- // any of those attributes
- // except, those descriptors
- // that contain DefaultMemeberAttribute
- return descriptors;
- }
- [MonoTODO]
- object ICustomTypeDescriptor.GetPropertyOwner (PropertyDescriptor pd)
- {
- return this;
- }
- public bool IsDBNull (int i)
- {
- return GetValue (i) == null;
- }
- #if NET_1_2
- public virtual bool IsSetAsDefault (int i)
- {
- throw new NotImplementedException ();
- }
- public void SetSchemaInfo (SchemaInfo[] schemaInfo)
- {
- throw new NotImplementedException ();
- }
- #endif
- #endregion // Methods
- }
- }
|