ChangeLog 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. 2003-12-21 Tim Coleman <[email protected]>
  2. * SqlConnection.cs:
  3. Enable Integrated Security
  4. 2003-12-19 Tim Coleman <[email protected]>
  5. * ISqlNotificationReceiver.cs SqlResultSet.cs:
  6. New stubs added
  7. * SqlClientPermission.cs:
  8. Fix constructor for 1.2
  9. 2003-12-04 John Luke <[email protected]>
  10. * SqlXmlTextReader.cs: applied patch from Chris Masters <[email protected]>
  11. fix peek so it checks if it is at the end and also to make sure that if Read()
  12. advances the position past the end of the localBuffer array, it makes
  13. a call to GetNextBuffer(). fixes bug #40253 System.IndexOutOfRangeException when
  14. using SqlCommand.ExecuteXmlReader()
  15. 2003-11-20 Joerg Rosenkranz <[email protected]>
  16. * SqlConnection (SetDefaultConnectionParameters):
  17. Changed default value of WORKSTATION ID to reflect real
  18. host name instead of "localhost".
  19. 2003-11-16 Ben Maurer <[email protected]>
  20. * SqlParameterCollection.cs (Clear): Clear needs to take
  21. the parameter out of the collection so that it can be used
  22. again.
  23. (Remove):
  24. (RemoveAt): Ditto.
  25. 2003-10-03 Diego Caravana <[email protected]>
  26. * SqlCommand.cs: no change.
  27. * SqlConnection.cs (Close): Added checks for null instance
  28. variables.
  29. * SqlParameter.cs (Direction): Now handles parameters of type
  30. ReturnValue and InputOutput.
  31. * SqlParameterCollection.cs (IndexOf(string)): Search for
  32. SqlParameter object in list is done by obtaining ParameterName
  33. attribute, not directly through list.IndexOf().
  34. 2003-08-22 Duncan Mak <[email protected]>
  35. * SqlCommand.cs (ExecuteNonQuery): Return
  36. Connection.Tds.RecordsAffected if it is successful. Patch from
  37. Jörg Rosenkranz <[email protected]>.
  38. This is part of a fix to bug #40315.
  39. 2003-08-20 Duncan Mak <[email protected]>
  40. * SqlConnectionPool.cs (ReleaseConnection): A patch from Joerg
  41. Rosenkranz <[email protected]>. Currently, if a connection is
  42. closed by an external event (network problem, etc.) it is pushed
  43. back into the connection pool. The next Open call retrieves this
  44. invalid connection which leads to exceptions when executing
  45. statements.
  46. This patch fixes this problem. This closes bug #47429.
  47. 2003-07-04 Miguel de Icaza <[email protected]>
  48. * SqlDataReader.cs: Added extra information to the exceptions
  49. thrown by all the GetXXXX methods.
  50. 2003-03-15 Daniel Morgan <[email protected]>
  51. * SqlConnection.cs: if Server in the ConnectionString
  52. is set to "(local", use "localhost" as the hostname
  53. to connect
  54. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  55. * SqlException.cs: implemented GetObjectData ().
  56. 2003-02-16 Daniel Morgan <[email protected]>
  57. * ChangeLog: added this file
  58. * SqlConnection.cs: - parse data source for 3 possible uses:
  59. "Server=hostname",
  60. "Server=hostname\\instancename",
  61. "Server=hostname,port" and open the connection based on the
  62. resulting server name and port.
  63. - Added support for named instances
  64. by discovery of the sql server tcp port via the sql monitor (udp port 1434)
  65. thanks to Phillip Jerkins ([email protected]) contribution.
  66. Also, thanks to Gonzalo and Tim for their help with timeouts.