2
0

ChangeLog 3.8 KB

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