ChangeLog 7.7 KB

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