ChangeLog 824 B

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