ChangeLog 3.5 KB

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