2
0

SqlCommand.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. //
  2. // System.Data.SqlClient.SqlCommand.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // (C) Ximian, Inc
  8. //
  9. namespace System.Data.SqlClient
  10. {
  11. /// <summary>
  12. /// Represents a SQL statement that is executed while connected to a SQL database.
  13. /// </summary>
  14. public class SqlCommand : IDbCommand
  15. {
  16. [MonoTODO]
  17. void Cancel()
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. [MonoTODO]
  22. SqlParameter CreateParameter()
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. [MonoTODO]
  27. int ExecuteNonQuery()
  28. {
  29. throw new NotImplementedException ();
  30. }
  31. [MonoTODO]
  32. SqlDataReader ExecuteReader()
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. [MonoTODO]
  37. SqlDataReader ExecuteReader(CommandBehavior behavior)
  38. {
  39. }
  40. [MonoTODO]
  41. object ExecuteScalar()
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. [MonoTODO]
  46. void Prepare()
  47. {
  48. throw new NotImplementedException ();
  49. }
  50. [MonoTODO]
  51. string CommandText
  52. {
  53. get { throw new NotImplementedException (); }
  54. set { throw new NotImplementedException (); }
  55. }
  56. [MonoTODO]
  57. int CommandTimeout
  58. {
  59. get { throw new NotImplementedException (); }
  60. set { throw new NotImplementedException (); }
  61. }
  62. [MonoTODO]
  63. CommandType CommandType
  64. {
  65. get { throw new NotImplementedException (); }
  66. set { throw new NotImplementedException (); }
  67. }
  68. [MonoTODO]
  69. SqlConnection Connection
  70. {
  71. get { throw new NotImplementedException (); }
  72. set { throw new NotImplementedException (); }
  73. }
  74. [MonoTODO]
  75. SqlParameterCollection Parameters
  76. {
  77. get { throw new NotImplementedException (); }
  78. }
  79. [MonoTODO]
  80. IDbTransaction Transaction
  81. {
  82. get { throw new NotImplementedException (); }
  83. set { throw new NotImplementedException (); }
  84. }
  85. [MonoTODO]
  86. UpdateRowSource UpdatedRowSource
  87. {
  88. get { throw new NotImplementedException (); }
  89. set { throw new NotImplementedException (); }
  90. }
  91. }
  92. }