| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- //
- // System.Data.SqlClient.SqlDataReader.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- // Daniel Morgan ([email protected])
- // Tim Coleman ([email protected])
- //
- // (C) Ximian, Inc 2002
- // (C) Daniel Morgan 2002
- // Copyright (C) Tim Coleman, 2002
- //
- using Mono.Data.TdsClient.Internal;
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- namespace System.Data.SqlClient {
- public sealed class SqlDataReader : MarshalByRefObject, IEnumerable, IDataReader, IDisposable, IDataRecord
- {
- #region Fields
- int fieldCount;
- bool hasRows;
- bool isClosed;
- int recordsAffected;
- SqlCommand command;
- DataTable schemaTable;
- #endregion // eields
- #region Constructors
- internal SqlDataReader (SqlCommand command)
- {
- schemaTable = ConstructSchemaTable ();
- this.command = command;
- this.fieldCount = 0;
- this.isClosed = false;
- NextResult ();
- }
- #endregion
- #region Properties
- public int Depth {
- get { return 0; }
- }
- public int FieldCount {
- get { return fieldCount; }
- }
- public bool HasRows {
- get { return hasRows; }
- }
- public bool IsClosed {
- get { return isClosed; }
- }
- public object this [int i] {
- get { return GetValue (i); }
- }
- public object this [string name] {
- get { return GetValue (GetOrdinal (name)); }
- }
- public int RecordsAffected {
- get { return recordsAffected; }
- }
- #endregion // Properties
- #region Methods
- public void Close()
- {
- isClosed = true;
- command.Connection.DataReaderOpen = false;
- }
- private static DataTable ConstructSchemaTable ()
- {
- Type booleanType = Type.GetType ("System.Boolean");
- Type stringType = Type.GetType ("System.String");
- Type intType = Type.GetType ("System.Int32");
- Type typeType = Type.GetType ("System.Type");
- DataTable schemaTable = new DataTable ("SchemaTable");
- schemaTable.Columns.Add ("ColumnName", stringType);
- schemaTable.Columns.Add ("ColumnOrdinal", intType);
- schemaTable.Columns.Add ("ColumnSize", intType);
- schemaTable.Columns.Add ("NumericPrecision", intType);
- schemaTable.Columns.Add ("NumericScale", intType);
- schemaTable.Columns.Add ("IsUnique", booleanType);
- schemaTable.Columns.Add ("IsKey", booleanType);
- schemaTable.Columns.Add ("BaseServerName", stringType);
- schemaTable.Columns.Add ("BaseCatalogName", stringType);
- schemaTable.Columns.Add ("BaseColumnName", stringType);
- schemaTable.Columns.Add ("BaseSchemaName", stringType);
- schemaTable.Columns.Add ("BaseTableName", stringType);
- schemaTable.Columns.Add ("DataType", typeType);
- schemaTable.Columns.Add ("AllowDBNull", booleanType);
- schemaTable.Columns.Add ("ProviderType", booleanType);
- schemaTable.Columns.Add ("IsAliased", booleanType);
- schemaTable.Columns.Add ("IsExpression", booleanType);
- schemaTable.Columns.Add ("IsIdentity", booleanType);
- schemaTable.Columns.Add ("IsAutoIncrement", booleanType);
- schemaTable.Columns.Add ("IsRowVersion", booleanType);
- schemaTable.Columns.Add ("IsHidden", booleanType);
- schemaTable.Columns.Add ("IsLong", booleanType);
- schemaTable.Columns.Add ("IsReadOnly", booleanType);
- return schemaTable;
- }
- [MonoTODO]
- public bool GetBoolean (int i)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public byte GetByte (int i)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public long GetBytes (int i, long dataIndex, byte[] buffer, int bufferIndex, int length)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public char GetChar (int i)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public long GetChars (int i, long dataIndex, char[] buffer, int bufferIndex, int length)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public IDataReader GetData (int i)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public string GetDataTypeName (int i)
- {
- throw new NotImplementedException ();
- }
- public DateTime GetDateTime (int i)
- {
- object value = GetValue (i);
- if (!(value is DateTime))
- throw new InvalidCastException ();
- return (DateTime) value;
- }
- public decimal GetDecimal (int i)
- {
- object value = GetValue (i);
- if (!(value is decimal))
- throw new InvalidCastException ();
- return (decimal) value;
- }
- public double GetDouble (int i)
- {
- object value = GetValue (i);
- if (!(value is double))
- throw new InvalidCastException ();
- return (double) value;
- }
- public Type GetFieldType (int i)
- {
- return GetValue (i).GetType ();
- }
- public float GetFloat (int i)
- {
- object value = GetValue (i);
- if (!(value is float))
- throw new InvalidCastException ();
- return (float) value;
- }
- [MonoTODO]
- public Guid GetGuid (int i)
- {
- throw new NotImplementedException ();
- }
- public short GetInt16 (int i)
- {
- object value = GetValue (i);
- if (!(value is short))
- throw new InvalidCastException ();
- return (short) value;
- }
- public int GetInt32 (int i)
- {
- object value = GetValue (i);
- if (!(value is int))
- throw new InvalidCastException ();
- return (int) value;
- }
- public long GetInt64 (int i)
- {
- object value = GetValue (i);
- if (!(value is long))
- throw new InvalidCastException ();
- return (long) value;
- }
- public string GetName (int i)
- {
- return (string) schemaTable.Rows[i]["ColumnName"];
- }
- [MonoTODO]
- public int GetOrdinal (string name)
- {
- foreach (DataRow schemaRow in schemaTable.Rows)
- if (((string) schemaRow ["ColumnName"]).Equals (name))
- return (int) schemaRow ["ColumnOrdinal"];
- foreach (DataRow schemaRow in schemaTable.Rows)
- if (String.Compare (((string) schemaRow ["ColumnName"]), name, true) == 0)
- return (int) schemaRow ["ColumnOrdinal"];
- throw new IndexOutOfRangeException ();
- }
- public DataTable GetSchemaTable ()
- {
- if (schemaTable.Rows != null && schemaTable.Rows.Count > 0)
- return schemaTable;
- fieldCount = 0;
- foreach (TdsColumnSchema schemaObject in command.Tds.ColumnInfo) {
- DataRow schemaRow = schemaTable.NewRow ();
- schemaRow ["ColumnName"] = schemaObject.ColumnName;
- schemaRow ["ColumnOrdinal"] = schemaObject.ColumnOrdinal;
- schemaRow ["BaseTableName"] = schemaObject.TableName;
- schemaRow ["AllowDBNull"] = schemaObject.Nullable;
- schemaRow ["IsReadOnly"] = !schemaObject.Writable;
- schemaTable.Rows.Add (schemaRow);
- fieldCount += 1;
- }
- return schemaTable;
- }
- public string GetString (int i)
- {
- object value = GetValue (i);
- if (!(value is string))
- throw new InvalidCastException ();
- return (string) value;
- }
- public object GetValue (int i)
- {
- return command.Tds.ColumnValues[i];
- }
- public int GetValues (object[] values)
- {
- int len = values.Length;
- command.Tds.ColumnValues.CopyTo (0, values, 0, len);
- return (len > FieldCount ? len : FieldCount);
- }
- [MonoTODO]
- void IDisposable.Dispose ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- IEnumerator IEnumerable.GetEnumerator ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public bool IsDBNull (int i)
- {
- throw new NotImplementedException ();
- }
- public bool NextResult ()
- {
- schemaTable.Rows.Clear ();
- return command.Tds.NextResult ();
- }
- public bool Read ()
- {
- return command.Tds.NextRow ();
- }
- #endregion // Methods
- }
- }
|