| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- 2004-03-12 Andreas Nahr <[email protected]>
- * SqlParameter.cs: DO NOT USE the consts scheme if types can be referenced directly!
- 2004-01-10 Atsushi Enomoto <[email protected]>
- * SqlClientPermission.cs : Fixed NET_1_2 build related to
- obsolete attribute problem (see DbDataPermission.cs)
- 2003-12-28 Tim Coleman <[email protected]>
- * SqlResultSet.cs:
- Stubbed out this class.
- 2003-12-23 Tim Coleman <[email protected]>
- * SqlConnection.cs:
- Improved connection string parsing. See
- System.Data.Common.DbConnectionString for source.
- 2003-12-21 Tim Coleman <[email protected]>
- * SqlConnection.cs:
- Enable Integrated Security
- 2003-12-19 Tim Coleman <[email protected]>
- * ISqlNotificationReceiver.cs SqlResultSet.cs:
- New stubs added
- * SqlClientPermission.cs:
- Fix constructor for 1.2
- 2003-12-04 John Luke <[email protected]>
- * SqlXmlTextReader.cs: applied patch from Chris Masters <[email protected]>
- fix peek so it checks if it is at the end and also to make sure that if Read()
- advances the position past the end of the localBuffer array, it makes
- a call to GetNextBuffer(). fixes bug #40253 System.IndexOutOfRangeException when
- using SqlCommand.ExecuteXmlReader()
- 2003-11-20 Joerg Rosenkranz <[email protected]>
- * SqlConnection (SetDefaultConnectionParameters):
- Changed default value of WORKSTATION ID to reflect real
- host name instead of "localhost".
- 2003-11-16 Ben Maurer <[email protected]>
- * SqlParameterCollection.cs (Clear): Clear needs to take
- the parameter out of the collection so that it can be used
- again.
- (Remove):
- (RemoveAt): Ditto.
- 2003-10-03 Diego Caravana <[email protected]>
- * SqlCommand.cs: no change.
- * SqlConnection.cs (Close): Added checks for null instance
- variables.
- * SqlParameter.cs (Direction): Now handles parameters of type
- ReturnValue and InputOutput.
- * SqlParameterCollection.cs (IndexOf(string)): Search for
- SqlParameter object in list is done by obtaining ParameterName
- attribute, not directly through list.IndexOf().
-
- 2003-08-22 Duncan Mak <[email protected]>
- * SqlCommand.cs (ExecuteNonQuery): Return
- Connection.Tds.RecordsAffected if it is successful. Patch from
- Jörg Rosenkranz <[email protected]>.
- This is part of a fix to bug #40315.
- 2003-08-20 Duncan Mak <[email protected]>
- * SqlConnectionPool.cs (ReleaseConnection): A patch from Joerg
- Rosenkranz <[email protected]>. Currently, if a connection is
- closed by an external event (network problem, etc.) it is pushed
- back into the connection pool. The next Open call retrieves this
- invalid connection which leads to exceptions when executing
- statements.
- This patch fixes this problem. This closes bug #47429.
- 2003-07-04 Miguel de Icaza <[email protected]>
- * SqlDataReader.cs: Added extra information to the exceptions
- thrown by all the GetXXXX methods.
- 2003-03-15 Daniel Morgan <[email protected]>
- * SqlConnection.cs: if Server in the ConnectionString
- is set to "(local", use "localhost" as the hostname
- to connect
- 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
- * SqlException.cs: implemented GetObjectData ().
- 2003-02-16 Daniel Morgan <[email protected]>
- * ChangeLog: added this file
- * SqlConnection.cs: - parse data source for 3 possible uses:
- "Server=hostname",
- "Server=hostname\\instancename",
- "Server=hostname,port" and open the connection based on the
- resulting server name and port.
- - Added support for named instances
- by discovery of the sql server tcp port via the sql monitor (udp port 1434)
- thanks to Phillip Jerkins ([email protected]) contribution.
- Also, thanks to Gonzalo and Tim for their help with timeouts.
-
|