ChangeLog 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. 2005-03-08 Sureshkumar T <[email protected]>
  2. * SqlDataReader.cs: Call base constructor with CommandBehavior
  3. parameter instead of passing DbCommand object. The internal base
  4. class with DbCommand Parameter is removed.
  5. 2005-03-07 Sureshkumar T <[email protected]>
  6. * SqlCommand.cs : Set CommandBehavior on
  7. ExecuteReader,ExecuteScalar,ExecuteNonQuery. This is used in
  8. CloseDataReader.
  9. This fixes bug #73252.
  10. 2005-03-03 Sureshkumar T <[email protected]>
  11. * SqlClientFactory.cs: While creating command, create using
  12. DbConnectionFactory as DbConnectionBase.CreateDbCommand needs to
  13. have a connection factory.
  14. * SqlConnection.cs: Added an internal constructor which takes
  15. DbConnectionFactory.
  16. * SqlConnectionFactory.cs: Added. Concrete class for abstract
  17. factory DbConnectionFactory.
  18. 2005-02-22 Sureshkumar T <[email protected]>
  19. * SqlDataReader.cs: GetBytes: return the length of the data if
  20. output buffer is null. if not, copy the values to buffer and
  21. return the bytes actually read.
  22. 2005-02-02 Sureshkumar T <[email protected]>
  23. * SqlConnection.cs:
  24. - Database: return db name from database if connection open,
  25. otherwise take from connection string.
  26. - Set default values for parameters in the constructor itself.
  27. - Dangling else problem with Close method.
  28. - reset values of parms (TdsConnectionParameters) rather setting
  29. to null.
  30. - set disposed to false in Open method
  31. - finally call base.Dispose in Dispose (bool)
  32. Fixes nunit regressions SqlConnectionTest:DefaultConnectionValues
  33. and SqlConnectionTest:DatabaseSynonyms.
  34. 2005-01-27 Sureshkumar T <[email protected]>
  35. * SqlCommand.cs (DeriveParameters): Change parameter name to
  36. "procedure_name".
  37. * SqlParameter.cs (SqlParameter (object [])) : call default
  38. constructor to create Tds.Metaparameter.
  39. fixes bug #63122.
  40. 2005-01-03 Sureshkumar T <[email protected]>
  41. * SqlCommand.cs: Fixed bug #68973. Reset Tds.RecordsAffected to 0
  42. for each execute statement.
  43. 2004-11-25 Sureshkumar T <[email protected]>
  44. These changes are for 2.0 profile only. These changes implement
  45. the generic data base access technique using Provider Factory
  46. Implementation. These classes need to be dervided from abstract
  47. base classes so that the corresponding factory classes are
  48. created when calling CreateCommand, CreateParameter, etc.
  49. * SqlClientFactory.cs: Provider Factory class Implementaion for SqlServer
  50. * SqlParameter.cs: Change base classes and override methods.
  51. * SqlParameterCollection.cs: Change base classes and override methods.
  52. * SqlTransaction.cs: Change base classes and override methods.
  53. * SqlDataSourceEnumerator.cs: DataSource Enumerator stubs.
  54. * SqlDataReader.cs: Change base classes and override methods.
  55. * SqlConnection.cs: Change base classes and override methods.
  56. * SqlCommandBuilder.cs: Change base classes and override methods.
  57. * SqlCommand.cs: Change base classes and override necessary methods.
  58. 2004-10-14 Umadevi S <[email protected]>
  59. * SqlCommand.cs - Implemented the clone method correctly.
  60. (fixed bug 67301)
  61. 2004-10-06 Umadevi S <[email protected]>
  62. * ISqlNoticationReceiver.cs - changed namespace
  63. * Added files SqlNotificationType.cs, SqlNotificationInfo.cs, SqlNotificationSource.cs
  64. 2004-09-24 Umadevi S <[email protected]>
  65. * SqlTransaction.cs - Dispose will not call rollback incase the transaction is not open.
  66. 2004-09-14 Sebastien Pouliot <[email protected]>
  67. * SqlClientPermission.cs: Added internal constructor accepting an Sql
  68. ClientPermissionAttribute parameter (using base class protected ctor).
  69. * SqlClientPermissionAttribute.cs: Copy now use the new SqlClient
  70. Permission constructor.
  71. 2004-09-13 Sebastien Pouliot <[email protected]>
  72. * SqlClientPermission.cs: Mostly completed (needs tests).
  73. * SqlClientPermissionAttribute.cs: Completed.
  74. 2004-09-02 Umadevi S <[email protected]>
  75. * SqlCommand.cs - ExecuteNonQuery to return -1 incase of executing a storedprocedure
  76. 2004-08-16 Gert Driesen <[email protected]>
  77. * SqlConnection.cs: added TODO on ConnectionString for keywords
  78. that are not yet implemented. check value of Integrated Security
  79. keyword, check value of bool keywords, improve error reporting
  80. for int keywords, added support for the following keyword
  81. synonyms : APP, TIMEOUT, NETWORK, PERSISTSECURITYINFO, WSID,
  82. LANGUAGE, USER. Throw NotImplementedException when encrypt keyword
  83. is set to true, enlist keyword is set to false or attachdbfilename
  84. keyword (or one of its synonyms) is set. Added FIXME for PERSIST
  85. SECURITY INFO keyword, throwing a NotImplementedException here
  86. would break lots of apps
  87. 2004-08-16 Gert Driesen <[email protected]>
  88. * SqlConnection.cs - spaces to tabs
  89. 2004-08-12 Sureshkumar T <[email protected]>
  90. * SqlDataReader.cs - In Close method, the remaining resultsets are drained
  91. out, to read output parameters & to avoid stream overlap
  92. 2004-06-30 Umadevi S <[email protected]>
  93. * SqlCommand.cs : In the Execute Method the commandbehavior parameters were ignored correct
  94. these
  95. 2004-06-22 Atsushi Enomoto <[email protected]>
  96. * SqlCommandBuilder.cs : Avoid cast exception caused by DbNull.
  97. 2004-06-18 Umadevi S <[email protected]>
  98. * SqlCommand.cs - ExecuteNonQuery returns -1 in all cases except
  99. insert,update or delete.
  100. 2004-06-18 Umadevi S <[email protected]>
  101. * SqlConnection.cs - handled null being passed as a connectionstring
  102. - checked for minimal set of parameters in connectionstring.
  103. - handled unrecogonized keywords similar to MS.NET
  104. 2004-06-17 Umadevi S <[email protected]>
  105. * SqlTransaction.cs - fixed multiple rollbacks being called causes invalidoperationexception
  106. 2004-06-04 Gert Driesen <[email protected]>
  107. * SqlClientPermission.cs: removed extra CreateInstance
  108. method
  109. 2004-06-02 Gert Driesen <[email protected]>
  110. * SQLDebugging.cs: added missing attributes, marked ctor
  111. public to match MS.NET
  112. 2004-05-22 Atsushi Enomoto <[email protected]>
  113. * SqlClientPermission.cs : don't use chained obsolete .ctor.
  114. 2004-05-20 Gert Driesen ([email protected])
  115. * SqlClientPermissionAttribute.cs: change AllowMultiple and
  116. Inherited to match .NET
  117. 2004-05-20 Umadevi S <[email protected]>
  118. * Fixed bug 58406- implemented the hasrow method, test program used
  119. to test with the bug report
  120. 2004-05-13 Umadevi S <[email protected]>
  121. * SqlClientPermission.cs, SqlDataReader.cs - added missing methods with TODO tags
  122. * SqlCommand.cs, SqlDataAdapter.cs - implemented ToolboxItemAttribute
  123. * SQLDebugging.cs - Added new file with a TODO tag
  124. 2004-04-05 Lluis Sanchez Gual <[email protected]>
  125. * SqlConnection.cs: Use connection pool implemented in Mono.Data.Tds.
  126. 2004-04-01 Lluis Sanchez Gual <[email protected]>
  127. * SqlDataReader.cs: Null values are now represented with DBNull instances.
  128. Deal with this.
  129. 2004-03-14 Tim Coleman <[email protected]>
  130. * SqlCommand.cs SqlConnection.cs:
  131. Changes from two patches by Andres Taylor
  132. <[email protected]>
  133. 2004-03-12 Andreas Nahr <[email protected]>
  134. * SqlParameter.cs: DO NOT USE the consts scheme if types can be referenced directly!
  135. 2004-01-10 Atsushi Enomoto <[email protected]>
  136. * SqlClientPermission.cs : Fixed NET_2_0 build related to
  137. obsolete attribute problem (see DbDataPermission.cs)
  138. 2003-12-28 Tim Coleman <[email protected]>
  139. * SqlResultSet.cs:
  140. Stubbed out this class.
  141. 2003-12-23 Tim Coleman <[email protected]>
  142. * SqlConnection.cs:
  143. Improved connection string parsing. See
  144. System.Data.Common.DbConnectionString for source.
  145. 2003-12-21 Tim Coleman <[email protected]>
  146. * SqlConnection.cs:
  147. Enable Integrated Security
  148. 2003-12-19 Tim Coleman <[email protected]>
  149. * ISqlNotificationReceiver.cs SqlResultSet.cs:
  150. New stubs added
  151. * SqlClientPermission.cs:
  152. Fix constructor for 1.2
  153. 2003-12-04 John Luke <[email protected]>
  154. * SqlXmlTextReader.cs: applied patch from Chris Masters <[email protected]>
  155. fix peek so it checks if it is at the end and also to make sure that if Read()
  156. advances the position past the end of the localBuffer array, it makes
  157. a call to GetNextBuffer(). fixes bug #40253 System.IndexOutOfRangeException when
  158. using SqlCommand.ExecuteXmlReader()
  159. 2003-11-20 Joerg Rosenkranz <[email protected]>
  160. * SqlConnection (SetDefaultConnectionParameters):
  161. Changed default value of WORKSTATION ID to reflect real
  162. host name instead of "localhost".
  163. 2003-11-16 Ben Maurer <[email protected]>
  164. * SqlParameterCollection.cs (Clear): Clear needs to take
  165. the parameter out of the collection so that it can be used
  166. again.
  167. (Remove):
  168. (RemoveAt): Ditto.
  169. 2003-10-03 Diego Caravana <[email protected]>
  170. * SqlCommand.cs: no change.
  171. * SqlConnection.cs (Close): Added checks for null instance
  172. variables.
  173. * SqlParameter.cs (Direction): Now handles parameters of type
  174. ReturnValue and InputOutput.
  175. * SqlParameterCollection.cs (IndexOf(string)): Search for
  176. SqlParameter object in list is done by obtaining ParameterName
  177. attribute, not directly through list.IndexOf().
  178. 2003-08-22 Duncan Mak <[email protected]>
  179. * SqlCommand.cs (ExecuteNonQuery): Return
  180. Connection.Tds.RecordsAffected if it is successful. Patch from
  181. Jörg Rosenkranz <[email protected]>.
  182. This is part of a fix to bug #40315.
  183. 2003-08-20 Duncan Mak <[email protected]>
  184. * SqlConnectionPool.cs (ReleaseConnection): A patch from Joerg
  185. Rosenkranz <[email protected]>. Currently, if a connection is
  186. closed by an external event (network problem, etc.) it is pushed
  187. back into the connection pool. The next Open call retrieves this
  188. invalid connection which leads to exceptions when executing
  189. statements.
  190. This patch fixes this problem. This closes bug #47429.
  191. 2003-07-04 Miguel de Icaza <[email protected]>
  192. * SqlDataReader.cs: Added extra information to the exceptions
  193. thrown by all the GetXXXX methods.
  194. 2003-03-15 Daniel Morgan <[email protected]>
  195. * SqlConnection.cs: if Server in the ConnectionString
  196. is set to "(local", use "localhost" as the hostname
  197. to connect
  198. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  199. * SqlException.cs: implemented GetObjectData ().
  200. 2003-02-16 Daniel Morgan <[email protected]>
  201. * ChangeLog: added this file
  202. * SqlConnection.cs: - parse data source for 3 possible uses:
  203. "Server=hostname",
  204. "Server=hostname\\instancename",
  205. "Server=hostname,port" and open the connection based on the
  206. resulting server name and port.
  207. - Added support for named instances
  208. by discovery of the sql server tcp port via the sql monitor (udp port 1434)
  209. thanks to Phillip Jerkins ([email protected]) contribution.
  210. Also, thanks to Gonzalo and Tim for their help with timeouts.