ChangeLog 974 B

1234567891011121314151617181920212223242526272829
  1. 2003-07-04 Miguel de Icaza <[email protected]>
  2. * SqlDataReader.cs: Added extra information to the exceptions
  3. thrown by all the GetXXXX methods.
  4. 2003-03-15 Daniel Morgan <[email protected]>
  5. * SqlConnection.cs: if Server in the ConnectionString
  6. is set to "(local", use "localhost" as the hostname
  7. to connect
  8. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  9. * SqlException.cs: implemented GetObjectData ().
  10. 2003-02-16 Daniel Morgan <[email protected]>
  11. * ChangeLog: added this file
  12. * SqlConnection.cs: - parse data source for 3 possible uses:
  13. "Server=hostname",
  14. "Server=hostname\\instancename",
  15. "Server=hostname,port" and open the connection based on the
  16. resulting server name and port.
  17. - Added support for named instances
  18. by discovery of the sql server tcp port via the sql monitor (udp port 1434)
  19. thanks to Phillip Jerkins ([email protected]) contribution.
  20. Also, thanks to Gonzalo and Tim for their help with timeouts.