ChangeLog 6.0 KB

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