ChangeLog 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. 2009-02-20 Veerapuram Varadhan <[email protected]>
  2. * OdbcDataReaderTest.cs: Added test for 419224.
  3. 2008-12-31 Gert Driesen <[email protected]>
  4. * OdbcCommandBuilderTest.cs: Improved GetDeleteCommand,
  5. GetInsertCommand and GetUpdateCommand tests. Added QuotePrefix,
  6. QuoteSuffix and QuoteIdentifier tests.
  7. * OdbcCommandTest.cs: Improved existing tests. Added
  8. ExecuteNonQuery and Dispose tests.
  9. * OdbcConnectionStringBuilderTest.cs: Moved to System.Data
  10. test suite.
  11. * OdbcDataAdapterTest.cs: Removed extra whitespace.
  12. * OdbcDataReaderTest.cs: Added GetBytes and GetSchemaTable
  13. tests.
  14. * OdbcParameterCollectionTest.cs: Improve existing tests.
  15. * OdbcParameterTest.cs: Added tests for several data types.
  16. 2008-12-30 Gert Driesen <[email protected]>
  17. * OdbcCommandTest.cs: Added test for bug #341743.
  18. 2008-07-28 Gert Driesen <[email protected]>
  19. * OdbcParameterTest.cs: Fixed compilation on 1.0 profile.
  20. 2008-03-03 Veerapuram Varadhan <[email protected]>
  21. * OdbcParameterTest.cs: Build break fix.
  22. 2008-03-03 Veerapuram Varadhan <[email protected]>
  23. * OdbcParameterTest.cs: Test for Bug#332809. Patch provided by
  24. Ernesto Carrea <[email protected]>
  25. 2008-01-16 Veerapuram Varadhan <[email protected]>
  26. * OdbcCommandBuilderTest.cs: Tests for new 2.0 GetInsertCommand,
  27. GetDeleteCommand and GetUpdateCommand APIs.
  28. 2007-10-19 Nagappan A <[email protected]>
  29. * OdbcDataReaderTest.cs (Bug332404Test): Bug 332404 - ODBC and
  30. numeric columns. Thanks to Ernesto Carrea <[email protected]>
  31. for the patch and the test case.
  32. Fixed compilation issues in Bug332400Test method.
  33. 2007-10-12 Nagappan A <[email protected]>
  34. * OdbcDataReaderTest.cs (Bug332400Test): Bug 332400 - ODBC and
  35. LONGBLOB columns. Thanks to Ernesto Carrea
  36. <[email protected]> for the patch and the test case.
  37. 2007-09-11 Nagappan A <[email protected]>
  38. * OdbcCommandBuilderTest.cs (DefaultPropertiesTest): QuotePrefix
  39. and QuoteSuffix are not supported in 2.0 profile, so moved them
  40. under 1.0 profile.
  41. * OdbcDataReaderTest.cs (Bug82560Test): Added new test case for
  42. the bug # 82560. Thanks to [email protected] (amc) for providing
  43. this test case.
  44. (Bug82135Test): Fixed connection open.
  45. 2007-07-31 Nagappan A <[email protected]>
  46. * OdbcDataReaderTest.cs (Bug82135Test): ODBC SQLExecDirect
  47. error. Delete where no-data-found fails. Fixes bug # 82135.
  48. * OdbcDataAdapterTest.cs (InsertUtf8Test): Thanks to
  49. [email protected] (amc) for providing this test case. Fixes bug #
  50. 82191. ODBC command UTF8 error. SQL failed with UTF8 symbols in
  51. query.
  52. 2007-06-21 Nagappan A <[email protected]>
  53. * OdbcConnectionStringBuilderTest.cs: Added base test-cases from
  54. Nidhi Rawal ([email protected]).
  55. * OdbcParameterTest.cs (ImageParameterTest, NTextParameterTest)
  56. (TextParameterTest): Fixed mysql syntax used.
  57. * OdbcDataReaderTest.cs (FindZeroInToStringTest): Test for varchar
  58. longer than 255 characters, by Mads Bondo Dydensborg <[email protected]>.
  59. 2007-06-07 Amit Biswas <[email protected]>
  60. * OdbcDataReaderTest.cs (GetDataTypeNameTest): Test case to check the returned data type names
  61. (GetDataTypeNameIndexOutOfRangeExceptionTest): Test for out of range exceptions
  62. (GetOrdinalTest): Test case for returned ordinals
  63. (GetOrdinalIndexOutOfRangeExceptionTest): Testing out of range index values
  64. (GetFieldTypeTest): Test case for checking returned field types
  65. (GetFieldTypeIndexOutOfRangeExceptionTest): Test case for checking out of range index values
  66. (GetNameTest): Test for returned name
  67. (GetNameIndexOutOfRangeExceptionTest): Test for out of range index values
  68. * OdbcParameterTest.cs (DefaultValuesTest): Test for default OdbcParameter values
  69. * OdbcParameterCollectionTest.cs (InsertTest): Test for inserting parameters in parameter collection
  70. (InsertNoOverwriteTest): Testing overwriting in Insert
  71. (InsertNullTest): Testing insert for null values
  72. (InsertEmptyTest): Testing insert for empty values
  73. (InsertAlreadyContainedParameterTest): Test for existing parameters
  74. (InsertArgumentGreaterThanCountTest): Testing out of range index values
  75. (InsertNegativeArgumentTest): Test for negative arguments
  76. (InsertNonOdbcParameterTest): Test to insert non Odbc Parameter values
  77. (AddRangeTest): Test for adding a range of values to the parameter collection
  78. (AddRangeParameterAlreadyContainedTest): Test for adding already contained parameters
  79. (AddRangeArgumentNullExceptionTest): Test for null arguments
  80. (AddRangeParameterContainedInAnotherCollTest): Adding range of parameters contained in another collection
  81. (AddRangeMultiDimensionalArrayTest): Test for checking support of multi-dimensional arrays
  82. (AddRangeArrayValuesArgumentNullExceptionTest): Test for null arguments in array values
  83. (ContainsTest): Test for Contains
  84. (ContainsNonOdbcParameterTest): Testing Contains for non-OdbcParameters
  85. (ContainsCaseSensitivityTest) : Test for case sensitivity
  86. (ContainsNotMineTest) : Testing Contains for parameters belonging to another collection
  87. (IndexOfCaseSensitivityTest): Testing case sensitivity for IndexOf
  88. (IndexOfNonOdbcParameterTest): Testing IndexOf for non-OdbcParameters
  89. (CopyToTest): Test for CopyTo method
  90. (CopyToArgumentExceptionTest): Testing for invalid arguments
  91. (CopyToMultiDimensionalArrayTest): Testing CopyTo for multi-dimensional arrays
  92. (CopyToLowerBoundCheckTest): Testing invalid index values
  93. (DuplicateParameterNameTest): Testing support for duplicate parameter names
  94. (RemoveTest): Test for Remove (OdbcParameter)
  95. (RemoveNullTest): Testing Remove for null values
  96. (RemoveEmptyTest): Testing Remove for empty values
  97. (RemoveNonOdbcParameterTest): Testing Remove for non Odbc Parameters
  98. (RemoveNonExistingParameterTest): Testing Remove for non existing Parameters
  99. (RemoveParameterContainedInAnotherCollTest): Removing parameters contained in another collection
  100. (RemoveAtTest): Test for RemoveAt
  101. (RemoveAtOutOfRangeIndexTest): Testing RemoveAt with invalid index
  102. (RemoveAtNegativeIndexTest): Test for negative index
  103. (RemoveAtBoundaryTest): Boundary check for RemoveAt
  104. (AddWithValueTest): Testing AddWithValue with various parameters
  105. (DefaultNamesAndValuesTest): Testing default names and values of parameters
  106. 2006-12-20 Nagappan A <[email protected]>
  107. * OdbcCommandBuilderTest.cs (DefaultPropertiesTest): Removed
  108. unnecessary code.
  109. 2005-10-14 Senganal T <[email protected]>
  110. * OdbcDataReaderTest.cs: Added test for bug #75032
  111. 2005-10-08 Sureshkumar T <[email protected]>
  112. * OdbcParameterTest.cs: Corrections.
  113. 2005-09-24 Sureshkumar T <[email protected]>
  114. * OdbcParameterTest.cs: Tests for OdbcCommand class.
  115. 2005-09-01 Sureshkumar T <[email protected]>
  116. * OdbcCommandBuilderTest.cs: Added tests for OdbcCommandBuilder.cs
  117. * OdbcCommandTest.cs: pulled from Test/System.Data.Odbc
  118. * OdbcDataAdapterTest.cs: pulled from Test/System.Data.Odbc
  119. * OdbcDataReaderTest.cs: pulled from Test/System.Data.Odbc
  120. * OdbcParameterCollectionTest.cs: pulled from Test/System.Data.Odbc