ChangeLog 3.9 KB

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