SqlCommandBuilder.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. //
  2. // System.Data.SqlClient.SqlCommandBuilder.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. // Daniel Morgan ([email protected])
  7. //
  8. // (C) Ximian, Inc 2002
  9. //
  10. using System;
  11. using System.Data;
  12. using System.ComponentModel;
  13. namespace System.Data.SqlClient {
  14. /// <summary>
  15. /// Builder of one command
  16. /// that will be used in manipulating a table for
  17. /// a DataSet that is assoicated with a database.
  18. /// </summary>
  19. public sealed class SqlCommandBuilder : Component {
  20. [MonoTODO]
  21. public SqlCommandBuilder() {
  22. }
  23. [MonoTODO]
  24. public SqlCommandBuilder(SqlDataAdapter adapter) {
  25. }
  26. [MonoTODO]
  27. public SqlDataAdapter DataAdapter {
  28. get {
  29. throw new NotImplementedException ();
  30. }
  31. set{
  32. throw new NotImplementedException ();
  33. }
  34. }
  35. [MonoTODO]
  36. public string QuotePrefix {
  37. get {
  38. throw new NotImplementedException ();
  39. }
  40. set {
  41. throw new NotImplementedException ();
  42. }
  43. }
  44. [MonoTODO]
  45. public string QuoteSuffix {
  46. get {
  47. throw new NotImplementedException ();
  48. }
  49. set {
  50. throw new NotImplementedException ();
  51. }
  52. }
  53. [MonoTODO]
  54. public static void DeriveParameters(SqlCommand command) {
  55. throw new NotImplementedException ();
  56. }
  57. [MonoTODO]
  58. public SqlCommand GetDeleteCommand() {
  59. throw new NotImplementedException ();
  60. }
  61. [MonoTODO]
  62. public SqlCommand GetInsertCommand() {
  63. throw new NotImplementedException ();
  64. }
  65. [MonoTODO]
  66. public SqlCommand GetUpdateCommand() {
  67. throw new NotImplementedException ();
  68. }
  69. [MonoTODO]
  70. public void RefreshSchema() {
  71. throw new NotImplementedException ();
  72. }
  73. [MonoTODO]
  74. protected override void Dispose(bool disposing) {
  75. throw new NotImplementedException ();
  76. }
  77. [MonoTODO]
  78. ~SqlCommandBuilder() {
  79. // FIXME: create destructor - release resources
  80. }
  81. }
  82. }