ChangeLog 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. 2003-08-22 Duncan Mak <[email protected]>
  2. * SqlCommand.cs (ExecuteNonQuery): Return
  3. Connection.Tds.RecordsAffected if it is successful. Patch from
  4. Jörg Rosenkranz <[email protected]>.
  5. This is part of a fix to bug #40315.
  6. 2003-08-20 Duncan Mak <[email protected]>
  7. * SqlConnectionPool.cs (ReleaseConnection): A patch from Joerg
  8. Rosenkranz <[email protected]>. Currently, if a connection is
  9. closed by an external event (network problem, etc.) it is pushed
  10. back into the connection pool. The next Open call retrieves this
  11. invalid connection which leads to exceptions when executing
  12. statements.
  13. This patch fixes this problem. This closes bug #47429.
  14. 2003-07-04 Miguel de Icaza <[email protected]>
  15. * SqlDataReader.cs: Added extra information to the exceptions
  16. thrown by all the GetXXXX methods.
  17. 2003-03-15 Daniel Morgan <[email protected]>
  18. * SqlConnection.cs: if Server in the ConnectionString
  19. is set to "(local", use "localhost" as the hostname
  20. to connect
  21. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  22. * SqlException.cs: implemented GetObjectData ().
  23. 2003-02-16 Daniel Morgan <[email protected]>
  24. * ChangeLog: added this file
  25. * SqlConnection.cs: - parse data source for 3 possible uses:
  26. "Server=hostname",
  27. "Server=hostname\\instancename",
  28. "Server=hostname,port" and open the connection based on the
  29. resulting server name and port.
  30. - Added support for named instances
  31. by discovery of the sql server tcp port via the sql monitor (udp port 1434)
  32. thanks to Phillip Jerkins ([email protected]) contribution.
  33. Also, thanks to Gonzalo and Tim for their help with timeouts.