ChangeLog 4.3 KB

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