| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- //
- // System.Data.IDBCommand.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- 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
- {
- void Cancel()
- {
- }
-
- IDataParameter CreateParameter()
- {
- }
-
- int ExecuteNonQuery()
- {
- }
- IDataReader ExecuteReader()
- {
- }
- IDataReader ExecuteReader(CommandBehavior behavior)
- {
- }
- object ExecuteScalar()
- {
- }
- void Prepare()
- {
- }
- string CommandText
- {
- get
- {
- }
- set
- {
- }
- }
- int CommandTimeout
- {
- get
- {
- }
- set
- {
- }
- }
- CommandTpe CommandType
- {
- get
- {
- }
- set
- {
- }
- }
- IDbConnection Connection
- {
- get
- {
- }
- set
- {
- }
- }
- IDataParameterCollection Parameters
- {
- get
- {
- }
- }
- IDbTransaction Transaction
- {
- get
- {
- }
- set
- {
- }
- }
- UpdateRowSource UpdatedRowSource
- {
- get
- {
- }
- set
- {
- }
- }
- }
- }
|