ChangeLog 3.3 KB

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