ChangeLog 2.8 KB

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