SqlDataAdapter.cs 960 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // System.Data.SqlClient.SqlDataAdapter.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 set of command-related properties that are used to fill the DataSet and update a data source, all this from a SQL database.
  13. /// </summary>
  14. public class SqlDataAdapter : IDbDataAdapter
  15. {
  16. [MonoTODO]
  17. SqlCommand DeleteCommand
  18. {
  19. get { throw new NotImplementedException (); }
  20. set { throw new NotImplementedException (); }
  21. }
  22. [MonoTODO]
  23. SqlCommand InsertCommand
  24. {
  25. get { throw new NotImplementedException (); }
  26. set { throw new NotImplementedException (); }
  27. }
  28. [MonoTODO]
  29. SqlCommand SelectCommand
  30. {
  31. get { throw new NotImplementedException (); }
  32. set { throw new NotImplementedException (); }
  33. }
  34. SqlCommand UpdateCommand
  35. {
  36. get { throw new NotImplementedException (); }
  37. set { throw new NotImplementedException (); }
  38. }
  39. }
  40. }