ChangeLog 3.2 KB

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