ChangeLog 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. 2007-05-10 Adar Wesley <[email protected]>
  2. * SqlCommand.cs: added missing methods Asynch operations
  3. * SqlConnection.cs: added missing methods ChangePassword, ClearPool,
  4. ClearAllPools, RetrieveStatistics, ResetStatistics.
  5. * SqlDataReader.cs: added missing methods GetSqlBytes, GetSqlChars,
  6. GetSqlXml, IsCommandBehavior.
  7. * SqlErrorCollection.cs: added missing method strongly typed CopyTo.
  8. * SqlParameter.cs: added missing methods ResetSqlDbType, ResetDbType.
  9. * SqlParameterCollection.cs: added missing methods strongly typed
  10. AddRange, IndexOf.
  11. * SqlTransaction.cs: added missing methods Save, Rollback.
  12. 2006-08-24 Konstantin Triger <[email protected]>
  13. * SqlCommand, SqlParameter.cs: correctly resolve parameters without '@'.
  14. 2006-06-21 Konstantin Triger <[email protected]>
  15. * SqlCommand.cs, SqlXmlTextReader.cs: ExecuteXmlReader() implementation.
  16. 2005-12-15 Konstantin Triger <[email protected]>
  17. * SqlConnection.cs: save StringManager into AppDomain.
  18. 2005-16-11 Boris Kirzner <[email protected]>
  19. * SqlConnection.cs: Added override for CreateException().
  20. 2005-09-14 Boris Kirzner <[email protected]>
  21. * SqlConvert.cs: Fix SqlDbType to JDBC type convertion.
  22. 2005-09-11 Boris Kirzner <[email protected]>
  23. * SqlConvert.cs: Fix DbType to SqlDbType convertion.
  24. 2005-09-05 Boris Kirzner <[email protected]>
  25. * SqlConvert.cs: reimplemented ValueTypeToSqlDbType().
  26. * SqlParameter.cs:
  27. - Update of DbType should also update SqlDbType property.
  28. - Do not update parameter type is the value set is DbNull.
  29. 2005-08-18 Boris Kirzner <[email protected]>
  30. * SqlCommand.cs: added GetReturnParameter method.