ChangeLog 4.6 KB

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