ChangeLog 7.3 KB

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