ChangeLog 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. 2002-09-06 Franklin Wise <[email protected]>
  2. * System.Data\ForeignKeyConstraintTest.cs: added
  3. TestEqualAndHashCode() test.
  4. * System.Data\UniqueConstraint.cs: Added testing for HashCode
  5. 2002-09-04 Franklin Wise <[email protected]>
  6. * New Files:
  7. System.Data\DataRowCollectionTest.cs
  8. System.Data\DataRowTest.cs
  9. System.Data\DataColumnCollectionTest.cs
  10. 2002-08-20 Franklin Wise <[email protected]>
  11. * NewFile: System.Data\DataTableTest.cs
  12. * AllTests.cs: Added DataTableTest to tests.
  13. 2002-08-19 Franklin Wise <[email protected]>
  14. * System.Data\ForeignKeyConstraintTest.cs: Added more tests.
  15. 2002-08-15 Franklin Wise <[email protected]>
  16. * AllTests.cs: Added ForeignKeyConstraintTest to active running tests.
  17. * NewFile: System.Data\ForeignKeyConstraintTest.cs
  18. * System.Data\ConstraintTest: Added new test.
  19. * System.Data\UniqueConstraintTest: Added more tests.
  20. 2002-08-14 Daniel Morgan <[email protected]>
  21. * SqlSharpCli.cs: modified
  22. - implemented the following commands:
  23. \f FILENAME to read a batch of Sql# commands/queries from file.");
  24. \o FILENAME to write out the result of Sql# commands executed to file.");
  25. \load FILENAME to load from file SQL commands into SQL buffer.");
  26. \save FILENAME to save SQL commands from SQL buffer to file.
  27. \print - show what's in the SQL buffer now.
  28. - can save output of result to an html file or text
  29. - entering command "\provider mysql" will dynamically load mysql provider
  30. from its assembly Mono.Data.MySql.dll
  31. 2002-08-13 Daniel Morgan <[email protected]>
  32. * Test/SqlSharpCli.cs: modified
  33. - removed dependency on Mono.Data.MySql assembly and classes
  34. (if you still want to use Mono.Data.MySql, use \loadextprovider to load it).
  35. - added use of provider System.Data.OleDb classes; however, you must
  36. have a working libgda.
  37. - added dynamic loading of .NET Data Provider's assembly and Connection class
  38. which can be loaded via \loadextprovider
  39. - renamed providers: postgresclient to postgresql, oracleclient to oracle
  40. - add new command \exenonquery to execute non queries
  41. - add new command \exescalar to execute and return one row/one column of data
  42. - added beginnings of internal variables by adding new commands: \set, \unset, and
  43. \variable
  44. - add new command \r to reset (clear) the query buffer
  45. - if quiting, need to close database connection if still open
  46. 2002-08-12 Franklin Wise <[email protected]>
  47. * NewFile: Added test for System.Data.UniqueConstraintTest.cs
  48. * NewFile: Added test for System.Data.ConstraintTest.cs
  49. * NewFile: Added test for System.Data.ConstraintCollection.cs
  50. * Added blank test for DataColumnTest so that NUnit won't warn
  51. of no tests
  52. * Updated System.Data.AllTests.cs to include the new tests
  53. 2002-05-27 Tim Coleman <[email protected]>
  54. * TestSqlDataAdapter.cs: remove explicit opening of connection.
  55. This should occur implicitly now.
  56. 2002-05-23 Daniel Morgan <[email protected]>
  57. * TestSqlParameters.cs: read and display the schema columns
  58. correctly
  59. 2002-05-16 Tim Coleman <[email protected]>
  60. * TestSqlDataAdapter.cs: Added the foreach loop to iterate through
  61. all of the DataRows in the DataSet table "Table", as the
  62. GetEnumerator method of InternalDataCollectionBase has now been
  63. implemented.
  64. 2002/05/17 Nick Drochak <[email protected]>
  65. * System.Data_test.build: Remove RunTests from the default build. We
  66. can add this later, but it keeps the build from breaking for now.
  67. * TestSqlDataAdapter.cs: Fix build breaker.
  68. 2002-05-11 Daniel Morgan <[email protected]>
  69. * Test/PostgresTest.cs: added call to PostgreSQL stored procedure
  70. version() which returns the version of the PostgreSQL DBMS you
  71. are connected to. This works and I did not realize it. Thanks
  72. goes to Gonzalo.
  73. 2002-05-11 Daniel Morgan <[email protected]>
  74. * AllTests.cs: needed a using for System.Data and System.Data.SqlClient,
  75. changed SqlTypes.AllTests.Suite to System.Data.SqlTypes.AllTests.Suite
  76. * System.Data/DataColumnTest.cs: changed typeof to DataColumnTest
  77. 2002-05-10 Rodrigo Moya <[email protected]>
  78. * TestDataColumn.cs: removed.
  79. * System.Data_test.build: removed reference to TestDataColumn.
  80. * TheTests.cs: added RunDataColumnTest class.
  81. (RunAllTests.AddAllTests): added test for RunDataColumnTest.
  82. * System.Data/AllTests.cs: test suite for System.Data.
  83. * System.Data/DataColumnTest.cs: NUnit test for DataColumn.
  84. 2002-05-09 Daniel Morgan <[email protected]>
  85. * System.Data_test.build: exclude file TestDataColumn.cs
  86. test.build files have two places where a file needs to
  87. be excluded
  88. 2002-05-06 Daniel Morgan <[email protected]>
  89. * System.Data.SqlTypes.SqlInt32Test.cs: missing
  90. declaration for SqlInt32 z which was a test build blocker
  91. * PostgresTest.cs: got rid of warning about missing e
  92. * Test/PostgresTest.cs: exclude PostgresTest.cs
  93. from test build
  94. 2002-05-05 Tim Coleman <[email protected]>
  95. * TheTests.cs:
  96. * System.Data.SqlTypes/SqlInt32Test.cs:
  97. More test cases for System.Data.SqlTypes.SqlInt32
  98. 2002-05-03 Tim Coleman <[email protected]>
  99. * Added ChangeLog to test dir
  100. * Added NUnit framework necessary for make test
  101. * Added subdirectory for System.Data.SqlTypes
  102. * New files:
  103. ChangeLog
  104. AllTests.cs
  105. TheTests.cs
  106. System.Data_test.build
  107. System.Data.SqlTypes
  108. System.Data.SqlTypes/AllTests.cs
  109. System.Data.SqlTypes/SqlInt32Test.cs