* DataRelationCollection.cs: Added LAME spec comment as there is no
[mono.git] / mcs / class / System.Data / System.Data / IDbCommand.cs
index e079dd11ebcb2d264628971463690182bccc8733..16bdb6ebfecc2fccd1f27445272ea0d8fec2dab2 100644 (file)
@@ -7,6 +7,29 @@
 // (C) Chris Podurgiel
 //
 
+//
+// 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.
+//
+
 using System;
 
 namespace System.Data
@@ -14,7 +37,7 @@ namespace System.Data
        /// <summary>
        /// Represents a SQL statement that is executed while connected to a data source, and is implemented by .NET data providers that access relational databases.
        /// </summary>
-       public interface IDbCommand
+       public interface IDbCommand : IDisposable
        {
                void Cancel();
                
@@ -22,18 +45,14 @@ namespace System.Data
                
                int ExecuteNonQuery();
 
-               // FIXME: temporarily commented so i could 
-               //        compile SqlConnection and SqlCommand
-               /*
                IDataReader ExecuteReader();
 
                IDataReader ExecuteReader(CommandBehavior behavior);
-               */
+
                object ExecuteScalar();
 
                void Prepare();
 
-
                string CommandText{get; set;}
 
                int CommandTimeout{get; set;}