ChangeLog 4.7 KB

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