ChangeLog 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. 2004-06-04 Gert Driesen <[email protected]>
  2. * SqlClientPermission.cs: removed extra CreateInstance
  3. method
  4. 2004-06-02 Gert Driesen <[email protected]>
  5. * SQLDebugging.cs: added missing attributes, marked ctor
  6. public to match MS.NET
  7. 2004-05-22 Atsushi Enomoto <[email protected]>
  8. * SqlClientPermission.cs : don't use chained obsolete .ctor.
  9. 2004-05-20 Gert Driesen ([email protected])
  10. * SqlClientPermissionAttribute.cs: change AllowMultiple and
  11. Inherited to match .NET
  12. 2004-05-20 Umadevi S <[email protected]>
  13. * Fixed bug 58406- implemented the hasrow method, test program used
  14. to test with the bug report
  15. 2004-05-13 Umadevi S <[email protected]>
  16. * SqlClientPermission.cs, SqlDataReader.cs - added missing methods with TODO tags
  17. * SqlCommand.cs, SqlDataAdapter.cs - implemented ToolboxItemAttribute
  18. * SQLDebugging.cs - Added new file with a TODO tag
  19. 2004-04-05 Lluis Sanchez Gual <[email protected]>
  20. * SqlConnection.cs: Use connection pool implemented in Mono.Data.Tds.
  21. 2004-04-01 Lluis Sanchez Gual <[email protected]>
  22. * SqlDataReader.cs: Null values are now represented with DBNull instances.
  23. Deal with this.
  24. 2004-03-14 Tim Coleman <[email protected]>
  25. * SqlCommand.cs SqlConnection.cs:
  26. Changes from two patches by Andres Taylor
  27. <[email protected]>
  28. 2004-03-12 Andreas Nahr <[email protected]>
  29. * SqlParameter.cs: DO NOT USE the consts scheme if types can be referenced directly!
  30. 2004-01-10 Atsushi Enomoto <[email protected]>
  31. * SqlClientPermission.cs : Fixed NET_2_0 build related to
  32. obsolete attribute problem (see DbDataPermission.cs)
  33. 2003-12-28 Tim Coleman <[email protected]>
  34. * SqlResultSet.cs:
  35. Stubbed out this class.
  36. 2003-12-23 Tim Coleman <[email protected]>
  37. * SqlConnection.cs:
  38. Improved connection string parsing. See
  39. System.Data.Common.DbConnectionString for source.
  40. 2003-12-21 Tim Coleman <[email protected]>
  41. * SqlConnection.cs:
  42. Enable Integrated Security
  43. 2003-12-19 Tim Coleman <[email protected]>
  44. * ISqlNotificationReceiver.cs SqlResultSet.cs:
  45. New stubs added
  46. * SqlClientPermission.cs:
  47. Fix constructor for 1.2
  48. 2003-12-04 John Luke <[email protected]>
  49. * SqlXmlTextReader.cs: applied patch from Chris Masters <[email protected]>
  50. fix peek so it checks if it is at the end and also to make sure that if Read()
  51. advances the position past the end of the localBuffer array, it makes
  52. a call to GetNextBuffer(). fixes bug #40253 System.IndexOutOfRangeException when
  53. using SqlCommand.ExecuteXmlReader()
  54. 2003-11-20 Joerg Rosenkranz <[email protected]>
  55. * SqlConnection (SetDefaultConnectionParameters):
  56. Changed default value of WORKSTATION ID to reflect real
  57. host name instead of "localhost".
  58. 2003-11-16 Ben Maurer <[email protected]>
  59. * SqlParameterCollection.cs (Clear): Clear needs to take
  60. the parameter out of the collection so that it can be used
  61. again.
  62. (Remove):
  63. (RemoveAt): Ditto.
  64. 2003-10-03 Diego Caravana <[email protected]>
  65. * SqlCommand.cs: no change.
  66. * SqlConnection.cs (Close): Added checks for null instance
  67. variables.
  68. * SqlParameter.cs (Direction): Now handles parameters of type
  69. ReturnValue and InputOutput.
  70. * SqlParameterCollection.cs (IndexOf(string)): Search for
  71. SqlParameter object in list is done by obtaining ParameterName
  72. attribute, not directly through list.IndexOf().
  73. 2003-08-22 Duncan Mak <[email protected]>
  74. * SqlCommand.cs (ExecuteNonQuery): Return
  75. Connection.Tds.RecordsAffected if it is successful. Patch from
  76. Jörg Rosenkranz <[email protected]>.
  77. This is part of a fix to bug #40315.
  78. 2003-08-20 Duncan Mak <[email protected]>
  79. * SqlConnectionPool.cs (ReleaseConnection): A patch from Joerg
  80. Rosenkranz <[email protected]>. Currently, if a connection is
  81. closed by an external event (network problem, etc.) it is pushed
  82. back into the connection pool. The next Open call retrieves this
  83. invalid connection which leads to exceptions when executing
  84. statements.
  85. This patch fixes this problem. This closes bug #47429.
  86. 2003-07-04 Miguel de Icaza <[email protected]>
  87. * SqlDataReader.cs: Added extra information to the exceptions
  88. thrown by all the GetXXXX methods.
  89. 2003-03-15 Daniel Morgan <[email protected]>
  90. * SqlConnection.cs: if Server in the ConnectionString
  91. is set to "(local", use "localhost" as the hostname
  92. to connect
  93. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  94. * SqlException.cs: implemented GetObjectData ().
  95. 2003-02-16 Daniel Morgan <[email protected]>
  96. * ChangeLog: added this file
  97. * SqlConnection.cs: - parse data source for 3 possible uses:
  98. "Server=hostname",
  99. "Server=hostname\\instancename",
  100. "Server=hostname,port" and open the connection based on the
  101. resulting server name and port.
  102. - Added support for named instances
  103. by discovery of the sql server tcp port via the sql monitor (udp port 1434)
  104. thanks to Phillip Jerkins ([email protected]) contribution.
  105. Also, thanks to Gonzalo and Tim for their help with timeouts.