ChangeLog 4.0 KB

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