2
0

ChangeLog 9.2 KB

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