| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- //
- // System.Data.SqlClient.SqlCommand.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- //
- // (C) Ximian, Inc
- //
- namespace System.Data.SqlClient
- {
- /// <summary>
- /// Represents a SQL statement that is executed while connected to a SQL database.
- /// </summary>
- public class SqlCommand : IDbCommand
- {
- [MonoTODO]
- void Cancel()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- SqlParameter CreateParameter()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- int ExecuteNonQuery()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- SqlDataReader ExecuteReader()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- SqlDataReader ExecuteReader(CommandBehavior behavior)
- {
- }
- [MonoTODO]
- object ExecuteScalar()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void Prepare()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- string CommandText
- {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- int CommandTimeout
- {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- CommandType CommandType
- {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- SqlConnection Connection
- {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- SqlParameterCollection Parameters
- {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- IDbTransaction Transaction
- {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- UpdateRowSource UpdatedRowSource
- {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- }
- }
|