ChangeLog 6.0 KB

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