ChangeLog 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. 2002-10-13 Daniel Morgan <[email protected]>
  2. * SqlSharpCli.cs: modified
  3. - add support for the external Mono.Data.SqliteClient
  4. ADO.NET provider. All the user has to do is
  5. "/provider sqlite"
  6. to load it instead of the usual syntax for loading
  7. external providers
  8. "/loadextprovider Mono.Data.SqliteClient Mono.Data.SqliteClient.SqliteConnection".
  9. 2002-10-11 Daniel Morgan <[email protected]>
  10. * OdbcTest.cs: added
  11. for System.Data.Odbc tests. Modify this
  12. test as needed...
  13. 2002-10-10 Ville Palo ([email protected])
  14. * System.Data.SqlTypes/SqlDoubleTest.cs: new test suite for SqlDouble.
  15. 2002-10-10 Daniel Morgan <[email protected]>
  16. * SqlSharpCli.cs: modified
  17. - add support for System.Data.Odbc
  18. - created simple reader to display data for those providers
  19. which have not implemented GetSchemaTable - UseSimpleReader
  20. - allow only providers that support parameters to use them
  21. during exection of SQL - UseParameters
  22. - add support for postional parameter marker (question mark),
  23. the delimted named parameter markers (square brackets) in addition
  24. to colon and at parameter markers. Allow, the parameter marker
  25. to be settable.
  26. 2002-10-09 Ville Palo ([email protected])
  27. * System.Data.SqlTypes/SqlInt16Test.cs:
  28. * System.Data.SqlTypes/SqlInt64Test.cs: new test suites.
  29. 2002-10-04 Daniel Morgan <[email protected]>
  30. * SqlSharpCli.cs: modified
  31. - fix compile errors due to mcs has better error checking
  32. - fix exection of query with semicolon at end which resulted in an exception
  33. - added support for ? postioned parameters
  34. - added support for [] delimited named parameters
  35. - misc. tidbits
  36. 2002-10-03 ville <[email protected]>
  37. * System.Data.SqlClient/AllTests.cs:
  38. * System.Data.SqlClient/SqlByteTest.cs: added SqlByte test suite.
  39. 2002-10-01 Rodrigo Moya <[email protected]>
  40. * System.Data.SqlClient/AllTests.cs: added SqlBoolean test.
  41. 2002-10-01 ville <[email protected]>
  42. * System.Data.SqlClient/SqlBooleanTest.cs: new test suite for
  43. SqlBoolean class.
  44. 2002-09-06 Franklin Wise <[email protected]>
  45. * System.Data\ForeignKeyConstraintTest.cs: added
  46. TestEqualAndHashCode() test.
  47. * System.Data\UniqueConstraint.cs: Added testing for HashCode
  48. 2002-09-04 Franklin Wise <[email protected]>
  49. * New Files:
  50. System.Data\DataRowCollectionTest.cs
  51. System.Data\DataRowTest.cs
  52. System.Data\DataColumnCollectionTest.cs
  53. 2002-08-20 Franklin Wise <[email protected]>
  54. * NewFile: System.Data\DataTableTest.cs
  55. * AllTests.cs: Added DataTableTest to tests.
  56. 2002-08-19 Franklin Wise <[email protected]>
  57. * System.Data\ForeignKeyConstraintTest.cs: Added more tests.
  58. 2002-08-15 Franklin Wise <[email protected]>
  59. * AllTests.cs: Added ForeignKeyConstraintTest to active running tests.
  60. * NewFile: System.Data\ForeignKeyConstraintTest.cs
  61. * System.Data\ConstraintTest: Added new test.
  62. * System.Data\UniqueConstraintTest: Added more tests.
  63. 2002-08-14 Daniel Morgan <[email protected]>
  64. * SqlSharpCli.cs: modified
  65. - implemented the following commands:
  66. \f FILENAME to read a batch of Sql# commands/queries from file.");
  67. \o FILENAME to write out the result of Sql# commands executed to file.");
  68. \load FILENAME to load from file SQL commands into SQL buffer.");
  69. \save FILENAME to save SQL commands from SQL buffer to file.
  70. \print - show what's in the SQL buffer now.
  71. - can save output of result to an html file or text
  72. - entering command "\provider mysql" will dynamically load mysql provider
  73. from its assembly Mono.Data.MySql.dll
  74. 2002-08-13 Daniel Morgan <[email protected]>
  75. * Test/SqlSharpCli.cs: modified
  76. - removed dependency on Mono.Data.MySql assembly and classes
  77. (if you still want to use Mono.Data.MySql, use \loadextprovider to load it).
  78. - added use of provider System.Data.OleDb classes; however, you must
  79. have a working libgda.
  80. - added dynamic loading of .NET Data Provider's assembly and Connection class
  81. which can be loaded via \loadextprovider
  82. - renamed providers: postgresclient to postgresql, oracleclient to oracle
  83. - add new command \exenonquery to execute non queries
  84. - add new command \exescalar to execute and return one row/one column of data
  85. - added beginnings of internal variables by adding new commands: \set, \unset, and
  86. \variable
  87. - add new command \r to reset (clear) the query buffer
  88. - if quiting, need to close database connection if still open
  89. 2002-08-12 Franklin Wise <[email protected]>
  90. * NewFile: Added test for System.Data.UniqueConstraintTest.cs
  91. * NewFile: Added test for System.Data.ConstraintTest.cs
  92. * NewFile: Added test for System.Data.ConstraintCollection.cs
  93. * Added blank test for DataColumnTest so that NUnit won't warn
  94. of no tests
  95. * Updated System.Data.AllTests.cs to include the new tests
  96. 2002-05-27 Tim Coleman <[email protected]>
  97. * TestSqlDataAdapter.cs: remove explicit opening of connection.
  98. This should occur implicitly now.
  99. 2002-05-23 Daniel Morgan <[email protected]>
  100. * TestSqlParameters.cs: read and display the schema columns
  101. correctly
  102. 2002-05-16 Tim Coleman <[email protected]>
  103. * TestSqlDataAdapter.cs: Added the foreach loop to iterate through
  104. all of the DataRows in the DataSet table "Table", as the
  105. GetEnumerator method of InternalDataCollectionBase has now been
  106. implemented.
  107. 2002/05/17 Nick Drochak <[email protected]>
  108. * System.Data_test.build: Remove RunTests from the default build. We
  109. can add this later, but it keeps the build from breaking for now.
  110. * TestSqlDataAdapter.cs: Fix build breaker.
  111. 2002-05-11 Daniel Morgan <[email protected]>
  112. * Test/PostgresTest.cs: added call to PostgreSQL stored procedure
  113. version() which returns the version of the PostgreSQL DBMS you
  114. are connected to. This works and I did not realize it. Thanks
  115. goes to Gonzalo.
  116. 2002-05-11 Daniel Morgan <[email protected]>
  117. * AllTests.cs: needed a using for System.Data and System.Data.SqlClient,
  118. changed SqlTypes.AllTests.Suite to System.Data.SqlTypes.AllTests.Suite
  119. * System.Data/DataColumnTest.cs: changed typeof to DataColumnTest
  120. 2002-05-10 Rodrigo Moya <[email protected]>
  121. * TestDataColumn.cs: removed.
  122. * System.Data_test.build: removed reference to TestDataColumn.
  123. * TheTests.cs: added RunDataColumnTest class.
  124. (RunAllTests.AddAllTests): added test for RunDataColumnTest.
  125. * System.Data/AllTests.cs: test suite for System.Data.
  126. * System.Data/DataColumnTest.cs: NUnit test for DataColumn.
  127. 2002-05-09 Daniel Morgan <[email protected]>
  128. * System.Data_test.build: exclude file TestDataColumn.cs
  129. test.build files have two places where a file needs to
  130. be excluded
  131. 2002-05-06 Daniel Morgan <[email protected]>
  132. * System.Data.SqlTypes.SqlInt32Test.cs: missing
  133. declaration for SqlInt32 z which was a test build blocker
  134. * PostgresTest.cs: got rid of warning about missing e
  135. * Test/PostgresTest.cs: exclude PostgresTest.cs
  136. from test build
  137. 2002-05-05 Tim Coleman <[email protected]>
  138. * TheTests.cs:
  139. * System.Data.SqlTypes/SqlInt32Test.cs:
  140. More test cases for System.Data.SqlTypes.SqlInt32
  141. 2002-05-03 Tim Coleman <[email protected]>
  142. * Added ChangeLog to test dir
  143. * Added NUnit framework necessary for make test
  144. * Added subdirectory for System.Data.SqlTypes
  145. * New files:
  146. ChangeLog
  147. AllTests.cs
  148. TheTests.cs
  149. System.Data_test.build
  150. System.Data.SqlTypes
  151. System.Data.SqlTypes/AllTests.cs
  152. System.Data.SqlTypes/SqlInt32Test.cs