Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUmadevi S <uma@mono-cvs.ximian.com>2005-09-02 09:42:51 +0400
committerUmadevi S <uma@mono-cvs.ximian.com>2005-09-02 09:42:51 +0400
commit69c849468f69990d0ba817645546d14dc7b727e2 (patch)
tree3e3e6950073acfab71a5b41e64e5f06082d8b9e3 /mcs/class/System.Data/System.Data.SqlClient
parent2b7faf83f6b6463e0a0862ab3da66926c18066e9 (diff)
Removed SqlResultSet.cs file
svn path=/trunk/mcs/; revision=49316
Diffstat (limited to 'mcs/class/System.Data/System.Data.SqlClient')
-rw-r--r--mcs/class/System.Data/System.Data.SqlClient/ChangeLog4
-rw-r--r--mcs/class/System.Data/System.Data.SqlClient/SqlResultSet.cs738
2 files changed, 4 insertions, 738 deletions
diff --git a/mcs/class/System.Data/System.Data.SqlClient/ChangeLog b/mcs/class/System.Data/System.Data.SqlClient/ChangeLog
index c648adbfe6a..888bce79230 100644
--- a/mcs/class/System.Data/System.Data.SqlClient/ChangeLog
+++ b/mcs/class/System.Data/System.Data.SqlClient/ChangeLog
@@ -1,3 +1,7 @@
+2005-09-02 Umadevi S <sumadevi@novell.com>
+
+ * Removed SqlResultSet.cs file
+
2005-08-26 Sureshkumar T <tsureshkumar@novell.com>
* SqlConnection.cs (Open): enable sp_reset_connection.
diff --git a/mcs/class/System.Data/System.Data.SqlClient/SqlResultSet.cs b/mcs/class/System.Data/System.Data.SqlClient/SqlResultSet.cs
deleted file mode 100644
index c156c61a2f2..00000000000
--- a/mcs/class/System.Data/System.Data.SqlClient/SqlResultSet.cs
+++ /dev/null
@@ -1,738 +0,0 @@
-//
-// System.Data.SqlClient.SqlResultSet
-//
-// Author:
-// Tim Coleman (tim@timcoleman.com)
-//
-// Copyright (C) Tim Coleman, 2003
-//
-
-//
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-//
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-
-#if NET_2_0
-
-using System;
-using System.Collections;
-using System.Data;
-using System.Data.Sql;
-using System.Data.SqlTypes;
-
-namespace System.Data.SqlClient {
- public sealed class SqlResultSet : MarshalByRefObject, IEnumerable, ISqlResultSet, ISqlReader, ISqlRecord, ISqlGetTypedData, IGetTypedData, ISqlUpdatableRecord, ISqlSetTypedData, IDataReader, IDisposable, IDataUpdatableRecord, IDataRecord, ISetTypedData
- {
- #region Fields
-
- bool disposed;
-
- #endregion // Fields
-
- #region Properties
-
- public int Depth {
- get { throw new NotImplementedException (); }
- }
-
- public int FieldCount {
- get { throw new NotImplementedException (); }
- }
-
- public bool HasRows {
- get { throw new NotImplementedException (); }
- }
-
- public int HiddenFieldCount {
- get { throw new NotImplementedException (); }
- }
-
- object IDataRecord.this [int x] {
- get { return this [x]; }
- }
-
- object IDataRecord.this [string x] {
- get { return this [x]; }
- }
-
- public bool IsClosed {
- get { throw new NotImplementedException (); }
- }
-
- public object this [int index] {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- public object this [string name] {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- public int RecordsAffected {
- get { throw new NotImplementedException (); }
- }
-
- public bool Scrollable {
- get { throw new NotImplementedException (); }
- }
-
- public ResultSetSensitivity Sensitivity {
- get { throw new NotImplementedException (); }
- }
-
- public bool Updatable {
- get { throw new NotImplementedException (); }
- }
-
- #endregion // Properties
-
- #region Methods
-
- [MonoTODO]
- public void Close ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public ISqlUpdatableRecord CreateRecord ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void Delete ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- private void Dispose (bool disposing)
- {
- if (!disposed) {
- if (disposing) {
- Close ();
- }
- disposed = true;
- }
- }
-
- [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 ();
- }
-
- [MonoTODO]
- public DateTime GetDateTime (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public decimal GetDecimal (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public double GetDouble (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public Type GetFieldType (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public float GetFloat (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public Guid GetGuid (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public short GetInt16 (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public int GetInt32 (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public long GetInt64 (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public string GetName (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public object GetObjectRef (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public int GetOrdinal (string name)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public DataTable GetSchemaTable ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlBinary GetSqlBinary (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlBoolean GetSqlBoolean (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlByte GetSqlByte (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlBytes GetSqlBytes (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlBytes GetSqlBytesRef (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlChars GetSqlChars (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlChars GetSqlCharsRef (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlDate GetSqlDate (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlDateTime GetSqlDateTime (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlDecimal GetSqlDecimal (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlDouble GetSqlDouble (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlGuid GetSqlGuid (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlInt16 GetSqlInt16 (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlInt32 GetSqlInt32 (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlInt64 GetSqlInt64 (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlMetaData GetSqlMetaData (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlMoney GetSqlMoney (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlSingle GetSqlSingle (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlString GetSqlString (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlTime GetSqlTime (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlUtcDateTime GetSqlUtcDateTime (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public object GetSqlValue (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public int GetSqlValues (object[] values)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public SqlXmlReader GetSqlXmlReader (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public string GetString (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public object GetValue (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public int GetValues (object[] values)
- {
- throw new NotImplementedException ();
- }
-
- void IDisposable.Dispose ()
- {
- Dispose (true);
- GC.SuppressFinalize (this);
- }
-
- [MonoTODO]
- IEnumerator IEnumerable.GetEnumerator ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void Insert (ISqlRecord record)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public bool IsDBNull (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public bool IsSetAsDefault (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public bool NextResult ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public bool Read ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public bool ReadAbsolute (int position)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public bool ReadFirst ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public bool ReadLast ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public bool ReadPrevious ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public bool ReadRelative (int position)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetBoolean (int i, bool value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetByte (int i, byte value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetBytes (int i, long dataIndex, byte[] buffer, int bufferIndex, int length)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetChar (int i, char value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetChars (int i, long dataIndex, char[] buffer, int bufferIndex, int length)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetDateTime (int i, DateTime value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetDecimal (int i, decimal value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetDefault (int i)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetDouble (int i, double value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetFloat (int i, float value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetGuid (int i, Guid value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetInt16 (int i, short value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetInt32 (int i, int value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetInt64 (int i, long value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetObjectRef (int i, object buffer)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlBinary (int i, SqlBinary value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlBoolean (int i, SqlBoolean value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlByte (int i, SqlByte value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlBytes (int i, SqlBytes value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlBytesRef (int i, SqlBytes value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlChars (int i, SqlChars value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlCharsRef (int i, SqlChars value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlDate (int i, SqlDate value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlDateTime (int i, SqlDateTime value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlDecimal (int i, SqlDecimal value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlDouble (int i, SqlDouble value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlGuid (int i, SqlGuid value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlInt16 (int i, SqlInt16 value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlInt32 (int i, SqlInt32 value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlInt64 (int i, SqlInt64 value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlMoney (int i, SqlMoney value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlSingle (int i, SqlSingle value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlString (int i, SqlString value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlTime (int i, SqlTime value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlUtcDateTime (int i, SqlUtcDateTime value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetSqlXmlReader (int i, SqlXmlReader value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetString (int i, string value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void SetValue (int i, object value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public int SetValues (object[] value)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void Update ()
- {
- throw new NotImplementedException ();
- }
-
-
- #endregion // Methods
- }
-}
-
-#endif