ChangeLog 5.8 KB

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