ChangeLog 4.5 KB

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