ChangeLog 21 KB

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