ChangeLog 6.7 KB

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