ChangeLog 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551
  1. 2006-02-10 Senganal T <[email protected]>
  2. * SqlDataReader.cs :
  3. - GetBytes : Read binary/blob/clob data sequentially when
  4. CommandBehavior is set to SequentialAcccess
  5. - GetChars : Read String/clob data sequentially when CommandBehavior
  6. is set to SequentialAccess
  7. * SqlCommand.cs :
  8. - ExecuteReader : set SequentialAccess property on TDS
  9. - CloseDataReader : Reset the command behavior
  10. 2006-01-27 Senganal T <[email protected]>
  11. * SqlCommandBuilder.cs :
  12. - Modified CreateUpdateCommand,CreateDeleteCommand , to not include
  13. column name in the query if its a expression col.
  14. Also, modified the queries to match the generated queries in ms.net
  15. * SqlCommand.cs :
  16. - Modifed Prepare, to check if Parameter is explicitly initialized
  17. * SqlParameter.cs :
  18. - Added CheckIfInitialized : Checks if datatype is explicitly set and
  19. non-zero size is set for variable datatypes.
  20. * SqlDataReader.cs :
  21. - Added code for GetSqlBinary ()
  22. - Fixed GetFieldCount ()
  23. - Added more checks and exceptions.
  24. 2006-01-17 Senganal T <[email protected]>
  25. * SqlCommandBuilder.cs
  26. - Modified CreateNewCommand () : Clean up any existing parameter list
  27. before reusing the command.Fixes #77225
  28. 2005-11-24 Senganal T <[email protected]>
  29. * SqlConnection.cs
  30. - Modifications to get the correct Packet Size
  31. 2005-11-21 Senganal T <[email protected]>
  32. * SqlClientFactory.cs
  33. * SqlCommandBuilder.cs
  34. * SqlParameterCollection.cs
  35. * SqlDataReader.cs
  36. * SqlDataAdapter.cs
  37. * SqlParameter.cs
  38. * SqlTransaction.cs
  39. Added stubs and other changes for ADO.NET 2.0 compatibility
  40. 2005-11-12 Gonzalo Paniagua Javier <[email protected]>
  41. * SqlConnection.cs: don't throw NotImplementedException when using
  42. 'PERSIST SECUTIRY INFO'. Just do nothing.
  43. 2005-10-27 Senganal T <[email protected]>
  44. * SqlCommand.cs
  45. * SqlDataReader.cs
  46. Made changes so that the number of rows affected can be got directly from
  47. Tds regardsless of the type of query.Fixes bug #75698
  48. 2005-10-19 Senganal T <[email protected]>
  49. * SqlConnection.cs (SetProperties) :
  50. - Added support for AttachDBFileName
  51. 2005-10-19 Senganal T <[email protected]>
  52. * SqlException.cs (Constructor)
  53. - Modified the constructor, so that the message parameter
  54. of base class is not the same as that of the Exception message.
  55. fixes bug #76468
  56. 2005-09-24 Sureshkumar T <[email protected]>
  57. * SqlParameterCollection.cs (AddWithValue): added method. patch
  58. from [email protected] (Andy Waddell).
  59. 2005-09-21 Senganal T <[email protected]>
  60. * SqlConnection.cs :
  61. - Set the correct Default Values for Parameters.
  62. - Added Argument Checks (where missing) for the Properties and
  63. throw the correct exception on error.
  64. - Modified SetDefaultParameters() to make sure that the parameters
  65. are all reset to default values everytime it is called.
  66. - Modified SetProperties() to take into account the order of the
  67. keywords in the ConnectionString.
  68. SqlConnection Fixes for the failing sqlserver connected-mode testcases
  69. in ProviderTest/System.Data.SqlClient/SqlConnectionTest.cs
  70. 2005-09-21 Senganal T <[email protected]>
  71. * SqlTransaction.cs : Modifed the Rollback() method, so that
  72. connection can be used for another transaction after the previous
  73. transaction is rolled back. fixes bug 75904
  74. 2005-09-02 Umadevi S <[email protected]>
  75. * Removed SqlResultSet.cs file
  76. 2005-08-26 Sureshkumar T <[email protected]>
  77. * SqlConnection.cs (Open): enable sp_reset_connection.
  78. 2005-08-25 Sureshkumar T <[email protected]>
  79. * SqlCommandBuilder.cs: BuildInformation (): continue on columns
  80. who don't have basetablename.
  81. 2005-08-12 Daniel Morgan <[email protected]>
  82. * SqlCommandBuilder.cs: update command builder based on
  83. OdbcCommandBuilder latest changes to fix regression
  84. of bug 75552
  85. 2005-08-05 Sureshkumar T <[email protected]>
  86. * SqlCommandBuilder.cs: Set SourceVersion property to the created
  87. parameters as it is used by the Adapter's Update method.
  88. 2005-07-22 Sureshkumar T <[email protected]>
  89. * SqlCommandBuilder.cs, SqlParameterCollection.cs,
  90. SqlConnection.cs, SqlParameter.cs:
  91. - updated attributes & attribute descriptions to match with
  92. masterinfos.
  93. 2005-07-16 Daniel Morgan <[email protected]>
  94. * SqlCommandBuilder.cs: CreateUpdateCommand should get the current value, not
  95. the orginal value when setting one of the SET variables
  96. 2005-07-15 Sureshkumar T <[email protected]>
  97. * SqlCommandBuilder.cs:
  98. - set_DataAdapter: unsubscribe event if DataAdapter is reset.
  99. - CreateInsertCommand, CreateUpdateCommand, CreateDeleteCommand:
  100. if column mapping is missing, use the source column name. use
  101. proper version to get the data.
  102. - RowUpdatingHandler: set status to continue to actually process
  103. the query.
  104. 2005-07-04 Ben Maurer <[email protected]>
  105. * SqlError.cs: Patch from [email protected] to fix serialization.
  106. 2005-06-29 Sureshkumar T <[email protected]>
  107. * SqlConnection.cs: Open (): catch TdsInternalException and throw
  108. SqlException.
  109. * SqlException.cs: code re-organised to pass message as well with
  110. the exception.
  111. 2005-06-23 Sureshkumar T <[email protected]>
  112. * SqlConnectionStringBuilder.cs: simplified multiple keyword
  113. mappings and allowed-key checking. fixed Item, Remove,
  114. ContainsKey, ShoudSerialize, TryGetValue implementations.
  115. 2005-06-21 Sureshkumar T <[email protected]>
  116. * SqlConnectionStringBuilder.cs: Connection String Builder class
  117. for SqlClient Data Provider.
  118. 2005-06-01 Gonzalo Paniagua Javier <[email protected]>
  119. * SqlParameter.cs: moved the 'using S.D.SqlTypes' out of NET_2_0. Fixes
  120. the build.
  121. 2005-06-01 Sureshkumar T <[email protected]>
  122. * SqlParameter.cs: Parameter's value can be SqlTypes. Convert to
  123. framework type to pass to TDS layer. Fixes bug #75044.
  124. 2005-05-24 Umadevi S <[email protected]>
  125. * fixed some 2.0 and 1.0 specific fields/attributes for various classes.
  126. * Added SqlClientMetaDataCollectionNames.cs, Implemented some 2.0
  127. properties for SqlParameterCollection for the bulkcopy feature.
  128. 2005-05-20 Kornél Pál <http://www.kornelpal.hu/>
  129. * Fixed Bug #53169 - SqlDataReader incorrectly returns bigint as decimal
  130. Note: The fix works around the limitations of TDS 7.0 to avoid this
  131. difference between Mono and .NET Framework TDS 8.0 should be used instead.
  132. 2005-05-20 Umadevi S <[email protected]>
  133. * Fixed Bug 74948 - SqlParameter also takes DBNull Value.
  134. Correct some attributes stuff of 1.1 and 2.0 for SqlParameter.cs
  135. 2005-05-20 Umadevi S <[email protected]>
  136. * Continuing on implementation for bulkcopy and notification
  137. Added files SqlNotificationEventArgs.cs, OnChangeEventHandler.cs
  138. Modified SqlRowUpdatingEventArgs.cs
  139. 2005-05-19 Umadevi S <[email protected]>
  140. * For implementation of bulkcopy and notifications added files
  141. SqlBulkCopyOptions.cs,SqlBulkCopyColumnMapping.cs,SqlNotificationAuthType.cs
  142. SqlNotificationTransports.cs,SqlRowsCopiedEventArgs.cs, SqlRowsCopiedEventHandler.cs
  143. 2005-05-19 Umadevi S <[email protected]>
  144. * Corrected types,enum values of SqlNotificationType,SqlNotificationSource,
  145. SqlNotificationInfo and added new method in SqlRowUpdatingEventArgs.cs
  146. (For implementation of bulkcopy/notifications)
  147. 2005-04-19 Sureshkumar T <[email protected]>
  148. * SqlDataReader.cs: NextResult (): Re-create schema table for each
  149. result set. don't re-use, as it may be referenced from somewhere.
  150. 2005-04-07 Sureshkumar T <[email protected]>
  151. Ankit Jain <[email protected]>
  152. * SqlConnection.cs: Implemented additional connection string
  153. property "Asynchronous Processing".
  154. * SqlCommand.cs: Implemented Asynchronous command execution API.
  155. * SqlAsyncState.cs: A internal state object for asynchronous
  156. operations.
  157. * SqlAsyncResult.cs: Added. Class to hold result for asynchronous
  158. queries.
  159. 2005-03-28 Sureshkumar T <[email protected]>
  160. * SqlCommand.cs: Execute: Add a semicolon at the end of
  161. CommandText. Multiple semicolon's are not being complained.
  162. fixes bug #74134.
  163. 2005-03-11 Gonzalo Paniagua Javier <[email protected]>
  164. * SqlConnection.cs: added a finalizer for correct implementation of the
  165. IDisposable pattern.
  166. 2005-03-11 Gonzalo Paniagua Javier <[email protected]>
  167. * SqlException.cs: make it serialization-compatible with MS. Patch by
  168. Aleksandar Dezelin. Closes bug #73596.
  169. 2005-03-08 Sureshkumar T <[email protected]>
  170. * SqlDataReader.cs: Call base constructor with CommandBehavior
  171. parameter instead of passing DbCommand object. The internal base
  172. class with DbCommand Parameter is removed.
  173. 2005-03-07 Sureshkumar T <[email protected]>
  174. * SqlCommand.cs : Set CommandBehavior on
  175. ExecuteReader,ExecuteScalar,ExecuteNonQuery. This is used in
  176. CloseDataReader.
  177. This fixes bug #73252.
  178. 2005-03-03 Sureshkumar T <[email protected]>
  179. * SqlClientFactory.cs: While creating command, create using
  180. DbConnectionFactory as DbConnectionBase.CreateDbCommand needs to
  181. have a connection factory.
  182. * SqlConnection.cs: Added an internal constructor which takes
  183. DbConnectionFactory.
  184. * SqlConnectionFactory.cs: Added. Concrete class for abstract
  185. factory DbConnectionFactory.
  186. 2005-02-22 Sureshkumar T <[email protected]>
  187. * SqlDataReader.cs: GetBytes: return the length of the data if
  188. output buffer is null. if not, copy the values to buffer and
  189. return the bytes actually read.
  190. 2005-02-02 Sureshkumar T <[email protected]>
  191. * SqlConnection.cs:
  192. - Database: return db name from database if connection open,
  193. otherwise take from connection string.
  194. - Set default values for parameters in the constructor itself.
  195. - Dangling else problem with Close method.
  196. - reset values of parms (TdsConnectionParameters) rather setting
  197. to null.
  198. - set disposed to false in Open method
  199. - finally call base.Dispose in Dispose (bool)
  200. Fixes nunit regressions SqlConnectionTest:DefaultConnectionValues
  201. and SqlConnectionTest:DatabaseSynonyms.
  202. 2005-01-27 Sureshkumar T <[email protected]>
  203. * SqlCommand.cs (DeriveParameters): Change parameter name to
  204. "procedure_name".
  205. * SqlParameter.cs (SqlParameter (object [])) : call default
  206. constructor to create Tds.Metaparameter.
  207. fixes bug #63122.
  208. 2005-01-03 Sureshkumar T <[email protected]>
  209. * SqlCommand.cs: Fixed bug #68973. Reset Tds.RecordsAffected to 0
  210. for each execute statement.
  211. 2004-11-25 Sureshkumar T <[email protected]>
  212. These changes are for 2.0 profile only. These changes implement
  213. the generic data base access technique using Provider Factory
  214. Implementation. These classes need to be dervided from abstract
  215. base classes so that the corresponding factory classes are
  216. created when calling CreateCommand, CreateParameter, etc.
  217. * SqlClientFactory.cs: Provider Factory class Implementaion for SqlServer
  218. * SqlParameter.cs: Change base classes and override methods.
  219. * SqlParameterCollection.cs: Change base classes and override methods.
  220. * SqlTransaction.cs: Change base classes and override methods.
  221. * SqlDataSourceEnumerator.cs: DataSource Enumerator stubs.
  222. * SqlDataReader.cs: Change base classes and override methods.
  223. * SqlConnection.cs: Change base classes and override methods.
  224. * SqlCommandBuilder.cs: Change base classes and override methods.
  225. * SqlCommand.cs: Change base classes and override necessary methods.
  226. 2004-10-14 Umadevi S <[email protected]>
  227. * SqlCommand.cs - Implemented the clone method correctly.
  228. (fixed bug 67301)
  229. 2004-10-06 Umadevi S <[email protected]>
  230. * ISqlNoticationReceiver.cs - changed namespace
  231. * Added files SqlNotificationType.cs, SqlNotificationInfo.cs, SqlNotificationSource.cs
  232. 2004-09-24 Umadevi S <[email protected]>
  233. * SqlTransaction.cs - Dispose will not call rollback incase the transaction is not open.
  234. 2004-09-14 Sebastien Pouliot <[email protected]>
  235. * SqlClientPermission.cs: Added internal constructor accepting an Sql
  236. ClientPermissionAttribute parameter (using base class protected ctor).
  237. * SqlClientPermissionAttribute.cs: Copy now use the new SqlClient
  238. Permission constructor.
  239. 2004-09-13 Sebastien Pouliot <[email protected]>
  240. * SqlClientPermission.cs: Mostly completed (needs tests).
  241. * SqlClientPermissionAttribute.cs: Completed.
  242. 2004-09-02 Umadevi S <[email protected]>
  243. * SqlCommand.cs - ExecuteNonQuery to return -1 incase of executing a storedprocedure
  244. 2004-08-16 Gert Driesen <[email protected]>
  245. * SqlConnection.cs: added TODO on ConnectionString for keywords
  246. that are not yet implemented. check value of Integrated Security
  247. keyword, check value of bool keywords, improve error reporting
  248. for int keywords, added support for the following keyword
  249. synonyms : APP, TIMEOUT, NETWORK, PERSISTSECURITYINFO, WSID,
  250. LANGUAGE, USER. Throw NotImplementedException when encrypt keyword
  251. is set to true, enlist keyword is set to false or attachdbfilename
  252. keyword (or one of its synonyms) is set. Added FIXME for PERSIST
  253. SECURITY INFO keyword, throwing a NotImplementedException here
  254. would break lots of apps
  255. 2004-08-16 Gert Driesen <[email protected]>
  256. * SqlConnection.cs - spaces to tabs
  257. 2004-08-12 Sureshkumar T <[email protected]>
  258. * SqlDataReader.cs - In Close method, the remaining resultsets are drained
  259. out, to read output parameters & to avoid stream overlap
  260. 2004-06-30 Umadevi S <[email protected]>
  261. * SqlCommand.cs : In the Execute Method the commandbehavior parameters were ignored correct
  262. these
  263. 2004-06-22 Atsushi Enomoto <[email protected]>
  264. * SqlCommandBuilder.cs : Avoid cast exception caused by DbNull.
  265. 2004-06-18 Umadevi S <[email protected]>
  266. * SqlCommand.cs - ExecuteNonQuery returns -1 in all cases except
  267. insert,update or delete.
  268. 2004-06-18 Umadevi S <[email protected]>
  269. * SqlConnection.cs - handled null being passed as a connectionstring
  270. - checked for minimal set of parameters in connectionstring.
  271. - handled unrecogonized keywords similar to MS.NET
  272. 2004-06-17 Umadevi S <[email protected]>
  273. * SqlTransaction.cs - fixed multiple rollbacks being called causes invalidoperationexception
  274. 2004-06-04 Gert Driesen <[email protected]>
  275. * SqlClientPermission.cs: removed extra CreateInstance
  276. method
  277. 2004-06-02 Gert Driesen <[email protected]>
  278. * SQLDebugging.cs: added missing attributes, marked ctor
  279. public to match MS.NET
  280. 2004-05-22 Atsushi Enomoto <[email protected]>
  281. * SqlClientPermission.cs : don't use chained obsolete .ctor.
  282. 2004-05-20 Gert Driesen ([email protected])
  283. * SqlClientPermissionAttribute.cs: change AllowMultiple and
  284. Inherited to match .NET
  285. 2004-05-20 Umadevi S <[email protected]>
  286. * Fixed bug 58406- implemented the hasrow method, test program used
  287. to test with the bug report
  288. 2004-05-13 Umadevi S <[email protected]>
  289. * SqlClientPermission.cs, SqlDataReader.cs - added missing methods with TODO tags
  290. * SqlCommand.cs, SqlDataAdapter.cs - implemented ToolboxItemAttribute
  291. * SQLDebugging.cs - Added new file with a TODO tag
  292. 2004-04-05 Lluis Sanchez Gual <[email protected]>
  293. * SqlConnection.cs: Use connection pool implemented in Mono.Data.Tds.
  294. 2004-04-01 Lluis Sanchez Gual <[email protected]>
  295. * SqlDataReader.cs: Null values are now represented with DBNull instances.
  296. Deal with this.
  297. 2004-03-14 Tim Coleman <[email protected]>
  298. * SqlCommand.cs SqlConnection.cs:
  299. Changes from two patches by Andres Taylor
  300. <[email protected]>
  301. 2004-03-12 Andreas Nahr <[email protected]>
  302. * SqlParameter.cs: DO NOT USE the consts scheme if types can be referenced directly!
  303. 2004-01-10 Atsushi Enomoto <[email protected]>
  304. * SqlClientPermission.cs : Fixed NET_2_0 build related to
  305. obsolete attribute problem (see DbDataPermission.cs)
  306. 2003-12-28 Tim Coleman <[email protected]>
  307. * SqlResultSet.cs:
  308. Stubbed out this class.
  309. 2003-12-23 Tim Coleman <[email protected]>
  310. * SqlConnection.cs:
  311. Improved connection string parsing. See
  312. System.Data.Common.DbConnectionString for source.
  313. 2003-12-21 Tim Coleman <[email protected]>
  314. * SqlConnection.cs:
  315. Enable Integrated Security
  316. 2003-12-19 Tim Coleman <[email protected]>
  317. * ISqlNotificationReceiver.cs SqlResultSet.cs:
  318. New stubs added
  319. * SqlClientPermission.cs:
  320. Fix constructor for 1.2
  321. 2003-12-04 John Luke <[email protected]>
  322. * SqlXmlTextReader.cs: applied patch from Chris Masters <[email protected]>
  323. fix peek so it checks if it is at the end and also to make sure that if Read()
  324. advances the position past the end of the localBuffer array, it makes
  325. a call to GetNextBuffer(). fixes bug #40253 System.IndexOutOfRangeException when
  326. using SqlCommand.ExecuteXmlReader()
  327. 2003-11-20 Joerg Rosenkranz <[email protected]>
  328. * SqlConnection (SetDefaultConnectionParameters):
  329. Changed default value of WORKSTATION ID to reflect real
  330. host name instead of "localhost".
  331. 2003-11-16 Ben Maurer <[email protected]>
  332. * SqlParameterCollection.cs (Clear): Clear needs to take
  333. the parameter out of the collection so that it can be used
  334. again.
  335. (Remove):
  336. (RemoveAt): Ditto.
  337. 2003-10-03 Diego Caravana <[email protected]>
  338. * SqlCommand.cs: no change.
  339. * SqlConnection.cs (Close): Added checks for null instance
  340. variables.
  341. * SqlParameter.cs (Direction): Now handles parameters of type
  342. ReturnValue and InputOutput.
  343. * SqlParameterCollection.cs (IndexOf(string)): Search for
  344. SqlParameter object in list is done by obtaining ParameterName
  345. attribute, not directly through list.IndexOf().
  346. 2003-08-22 Duncan Mak <[email protected]>
  347. * SqlCommand.cs (ExecuteNonQuery): Return
  348. Connection.Tds.RecordsAffected if it is successful. Patch from
  349. Jörg Rosenkranz <[email protected]>.
  350. This is part of a fix to bug #40315.
  351. 2003-08-20 Duncan Mak <[email protected]>
  352. * SqlConnectionPool.cs (ReleaseConnection): A patch from Joerg
  353. Rosenkranz <[email protected]>. Currently, if a connection is
  354. closed by an external event (network problem, etc.) it is pushed
  355. back into the connection pool. The next Open call retrieves this
  356. invalid connection which leads to exceptions when executing
  357. statements.
  358. This patch fixes this problem. This closes bug #47429.
  359. 2003-07-04 Miguel de Icaza <[email protected]>
  360. * SqlDataReader.cs: Added extra information to the exceptions
  361. thrown by all the GetXXXX methods.
  362. 2003-03-15 Daniel Morgan <[email protected]>
  363. * SqlConnection.cs: if Server in the ConnectionString
  364. is set to "(local", use "localhost" as the hostname
  365. to connect
  366. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  367. * SqlException.cs: implemented GetObjectData ().
  368. 2003-02-16 Daniel Morgan <[email protected]>
  369. * ChangeLog: added this file
  370. * SqlConnection.cs: - parse data source for 3 possible uses:
  371. "Server=hostname",
  372. "Server=hostname\\instancename",
  373. "Server=hostname,port" and open the connection based on the
  374. resulting server name and port.
  375. - Added support for named instances
  376. by discovery of the sql server tcp port via the sql monitor (udp port 1434)
  377. thanks to Phillip Jerkins ([email protected]) contribution.
  378. Also, thanks to Gonzalo and Tim for their help with timeouts.