ChangeLog 3.6 KB

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