| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.Data.Sql.ISqlCommand
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.Xml;
- namespace System.Data.Sql {
- public interface ISqlCommand : IDbCommand, IDisposable
- {
- #region Properties
- ISqlConnection Connection { get; }
- SqlNotificationRequest Notification { get; set; }
- ISqlParameterCollection Parameters { get; }
- ISqlTransaction Transaction { get; set; }
- #endregion // Properties
- #region Methods
- ISqlParameter CreateParameter ();
- ISqlReader ExecutePageReader (CommandBehavior behavior, int startRow, int pageSize);
- ISqlReader ExecuteReader ();
- ISqlReader ExecuteReader (CommandBehavior behavior);
- ISqlResultSet ExecuteResultSet (ResultSetOptions options);
- ISqlResultSet ExecuteResultSet (ResultSetOptions options, string cursorname);
- ISqlRecord ExecuteRow ();
- object ExecuteSqlScalar ();
- XmlReader ExecuteXmlReader ();
- #endregion // Methods
- }
- }
- #endif
|