2
0

ChangeLog 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. 2002-04-21 Daniel Morgan <[email protected]>
  2. * System.Data.SqlClient/SqlCommand.cs: modified - to
  3. compile using mcs. This problem is
  4. returning a stronger type in csc vs. msc
  5. * System.Data.SqlClient/SqlConnection.cs: modified - msc
  6. can not do a using PGconn = IntPtr; and then declare
  7. with PGconn pgConn = IntPtr.Zero;
  8. Thiw works under csc though. Had to comment using and
  9. changed declaration to IntPtr pgConn = IntPtr.Zero;
  10. Also, got rid of compile warnings for hostaddr and port.
  11. * System.Data.SqlClient/SqlErrorCollection.cs: modified - got
  12. rid of compile warnings. Commented MonoTODO attribute because mcs
  13. doesn't seem to work with C# array property indexer (Item)
  14. this[int index]
  15. * System.Data.SqlClient/SqlParameterCollection.cs: modified -
  16. commented MonoTODO attribute for indexer for mcs compiling
  17. * Test/TestSqlIsolationLevel.cs:
  18. * Test/TestSqlInsert.cs:
  19. * Test/TestSqlException.cs: modified -
  20. removed extra ExecuteNonQuery which caused two inserted rows
  21. 2002-04-20 Daniel Morgan <[email protected]>
  22. * System.Data/StateChangeEventArgs.cs - added
  23. needed to compile System.Data.dll with mcs.
  24. 2002-04-20 Daniel Morgan <[email protected]>
  25. * System.Data.OleDb: added directory - for OleDb database
  26. provider classes
  27. * System.Data.SqlClient/SqlClientPermission.cs
  28. * System.Data.SqlClient/SqlClientPermissionAttribute.cs
  29. * System.Data.SqlClient/SqlCommandBuilder.cs
  30. * System.Data.SqlClient/SqlInfoMessageEventHandler.cs
  31. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs
  32. * System.Data.SqlClient/SqlRowUpdatedEventHandler.cs
  33. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs
  34. * System.Data.SqlClient/SqlRowUpdatingEventHandler.cs
  35. * Test/TestSqlException.cs
  36. * Test/TestSqlIsolationLevel.cs: added - more tests
  37. * System.Data.build: modified - added new files - excludes these too
  38. * System.Data.SqlClient/PostgresLibrary.cs - modified - comment
  39. * System.Data.SqlClient/SqlConnection.cs
  40. * System.Data.SqlClient/SqlCommand.cs
  41. * System.Data.SqlClient/SqlTransaction.cs
  42. * System.Data.SqlClient/SqlException.cs
  43. * System.Data.SqlClient/SqlErrorCollection.cs
  44. * System.Data.SqlClient/SqlError.cs: modified - transaction and
  45. exception/error handling. SqlConnection(connectionString)
  46. constructor should not automatically connect.
  47. * System.Data.SqlClient/SqlDataReader.cs
  48. * System.Data.SqlClient/SqlDataAdapter.cs
  49. * System.Data.SqlClient/SqlParameter.cs
  50. * System.Data.SqlClient/SqlParameterCollection.cs: modified -
  51. added using System.ComponentModel;
  52. * Test/TestSqlInsert.cs: modified - to use transaction
  53. 2002-04-17 Rodrigo Moya <[email protected]>
  54. * System.Data/DataRow.cs: new skeletons.
  55. * System.Data.Common/DataAdapter.cs:
  56. * System.Data.Common/DataColumnMapping.cs:
  57. * System.Data.Common/DataColumnMappingCollection.cs:
  58. * System.Data.Common/DataTableMapping.cs:
  59. * System.Data.Common/DataTableMappingCollection.cs:
  60. * System.Data.Common/DbDataAdapter.cs:
  61. * System.Data.Common/RowUpdatedEventArgs.cs:
  62. * System.Data.SqlClient/SqlDataAdapter.cs:
  63. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs: compilation
  64. fixes for Linux.
  65. * System.Data.Common/DbDataRecord.cs:
  66. * System.Data.Common/DbEnumerator.cs: removed MS implementation
  67. internal classes.
  68. 2002-04-17 Daniel Morgan <[email protected]>
  69. * Test/TestSqlInsert.cs: modified - do
  70. a SQL DELETE before SQL INSERT of row so you can use this
  71. test over and over.
  72. * System.Data.SqlClient/SqlTransaction.cs: modified - default
  73. IsolationLevel for PostgreSQL is ReadCommitted. However,
  74. PostgreSQL allows Serializable as well.
  75. (Thanks to Gonzalo for that!)
  76. * System.Data.SqlClient/SqlConnection.cs: modified
  77. * System.Data.SqlClient/SqlCommand.cs: modified
  78. * System.Data.SqlClient/SqlTransaction.cs: modified - got transactions
  79. working; however, we still need to implement SQL errors
  80. and exceptions to properly handle transactions. Also, added
  81. status and error message support from the PostgreSQL database.
  82. Currently, this does a Console.WriteLine() to display the
  83. status and error messages, but this is a TODO
  84. for SQL errors and exceptions.
  85. * System.Data/TODOAttribute.cs: added - needed MonoTODO
  86. attribute for System.Data.dll assembly
  87. * System.Data/IDbCommand.cs: modified - commented
  88. overloaded method ExecuteReader
  89. so System.Data.SqlClient.SqlCommand can compile
  90. * System.Data/IDbCommand.cs: modified
  91. * System.Data/IDbConnection.cs: modified - added using System;
  92. * System.Data/IDataParameter.cs
  93. * System.Data.build: modified - build classes
  94. in System.Data.SqlClient and exclude others in System.Data
  95. * System.Data.SqlClient/PostgresLibrary.cs: modified - change
  96. parameter data type from IntPtr to enum ExecStatusType
  97. * ChangeLog: modified - corrected previous entries in log
  98. 2002-04-16 Rodrigo Moya <[email protected]>
  99. * System.Data.Common/DataColumnMappingCollection.cs: added basic
  100. implementation. Still missing some stuff.
  101. 2002-04-16 Daniel Morgan <[email protected]>
  102. * System.Data.SqlClient/SqlConnection.cs: modified - got
  103. to compile, run, and connect to PostgreSQL database
  104. * System.Data.SqlClient/SqlCommand.cs: modified - got
  105. to compile, run, and execute a SQL INSERT command
  106. which successfully inserted a row
  107. into the PostgreSQL database
  108. * System.Data.SqlClient/SqlTransaction.cs: modified
  109. * System.Data.SqlClient/SqlParameter.cs: modified
  110. * System.Data.SqlClient/SqlParameterCollection.cs: modified
  111. * System.Data.SqlClient/SqlError.cs: modified
  112. * System.Data.SqlClient/SqlErrorCollection.cs: modified
  113. * System.Data.SqlClient/SqlException.cs: modified
  114. * System.Data.SqlClient/PostgresLibrary.cs: modified - to compile
  115. * System.Data.SqlClient/SqlAdapter: modified
  116. * System.Data.SqlClient/SqlReader: modified - add more stubs
  117. 2002-04-16 Daniel Morgan <[email protected]>
  118. * Test/TestSqlInsert.cs: added
  119. 2002-04-15 Daniel Morgan <[email protected]>
  120. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs: added - using in
  121. class SqlConnecition
  122. * System.Data.SqlClient/SqlErrorCollection.cs: added
  123. * System.Data.SqlClient/SqlErrors.cs: removed - no such class SqlErrors
  124. 2002-04-15 Christopher Podurgiel <[email protected]>
  125. * System.Data.IDbDataParameter: Added Interface to IDataParameter.
  126. * System.Data.IDbTransaction: Added Interface to IDisposable.
  127. * System.Data.IDbCommand: Fixed Capitalization of class name.
  128. * System.Data.IDbConnection: Fixed Capitalization of class name.
  129. 2002-04-15 Rodrigo Moya <[email protected]>
  130. * System.Data.Common/DbDataPermissionAttribute.cs:
  131. * System.Data.Common/DataAdapter.cs:
  132. * System.Data.Common/DataColumnMapping.cs:
  133. * System.Data.Common/DbDataPermission.cs: added some implementation.
  134. 2002-04-15 Rodrigo Moya <[email protected]>
  135. * System.Data.SqlClient/SqlConnection.cs: fixed constructor chaining
  136. syntax, as pointed out by Levent Camlibel.
  137. 2002-04-14 Rodrigo Moya <[email protected]>
  138. * System.Data.SqlTypes/SqlBinary.cs:
  139. * System.Data.SqlTypes/INullable.cs: new skeletons.
  140. 2002-04-14 Daniel Morgan <[email protected]>
  141. * System.Data.SqlClient/PostgresLibrary.cs: new internal class, which
  142. contains all calls the the PostgreSQL client library, to be used
  143. everywhere in System.Data.SqlClient.
  144. 2002-03-30 Rodrigo Moya <[email protected]>
  145. * System.Data.SqlClient/SqlConnection.cs: implemented basic
  146. constructors.
  147. * System.Data.SqlTypes/SqlNullValueException.cs: new skeletons.
  148. 2002-03-29 Rodrigo Moya <[email protected]>
  149. * System.Data.Common/DbDataRecord.cs:
  150. * System.Data.Common/DbEnumerator.cs:
  151. * System.Data.Common/RowUpdatedEventArgs.cs:
  152. * System.Data.Common/RowUpdatingEventArgs.cs:
  153. * System.Data.Common/DbDataPermissionAttribute.cs: new skeletons.
  154. 2002-03-28 Rodrigo Moya <[email protected]>
  155. * System.Data.Common/DataTableMappingCollection.cs:
  156. * System.Data.Common/DbDataAdapter.cs:
  157. * System.Data.Common/DbDataPermission.cs:
  158. * System.Data.Common/DataTableMapping.cs: new skeletons.
  159. * System.Data.SqlClient/SqlDataAdapter.cs:
  160. * System.Data.SqlClient/SqlDataReader.cs:
  161. * System.Data.SqlClient/SqlErrors.cs:
  162. * System.Data.SqlClient/SqlError.cs:
  163. * System.Data.SqlClient/SqlException.cs:
  164. * System.Data.SqlClient/SqlParameter.cs:
  165. * System.Data.SqlClient/SqlParameterCollection.cs:
  166. * System.Data.SqlClient/SqlTransaction.cs:
  167. * System.Data.SqlClient/SqlCommand.cs: fixed skeletons.
  168. 2002-03-27 Rodrigo Moya <[email protected]>
  169. * System.Data.Common/DataColumnMapping.cs:
  170. * System.Data.Common/DataColumnMappingCollection.cs:
  171. * System.Data.Common/DataAdapter.cs: created skeletons.
  172. * System.Data.build: exclude new directories from build.
  173. 2002-03-27 Rodrigo Moya <[email protected]>
  174. * System.Data.SqlClient/SqlTransaction.cs: started implementation.
  175. * System.Data.SqlClient/SqlConnection.cs (BeginTransaction):
  176. implemented (2 methods).
  177. 2002-03-24 Duncan Mak <[email protected]>
  178. * System.Data.build: Excluded System.Data.SqlClient from the build.
  179. The stubs are incomplete and they are stopping the build.
  180. * System.Data.SqlClient/SqlCommand.cs: Replaced 'implements' with ':'.
  181. 2002-03-24 Rodrigo Moya <[email protected]>
  182. * System.Data.SqlClient/*: added skeletons for the SQL managed
  183. provider for ADO.Net, to be based initially in PostgreSQL.
  184. 2002-03-15 Christopher Podurgiel <[email protected]>
  185. Changed the Namespace on some Enums from mono.System.Data to System.Data
  186. 2002-03-01 Christopher Podurgiel <[email protected]>
  187. * DataColumnCollection.cs : When an existing DataColumn is added, will now Assign a
  188. default name if the ColumnName is null.
  189. * DataSet.cs : Added
  190. * DataTable.cs : Added
  191. * DataRelationCollection.cs : Added
  192. * DataTableRelationCollection.cs : Added
  193. * DataColumn : Added
  194. 2002-02-11 Christopher Podurgiel <[email protected]>
  195. * DataColumnChangeEventArgs.cs : Added
  196. * DataColumnCollection.cs : Added
  197. 2002-02-10 Christopher Podurgiel <[email protected]>
  198. * Removed *.cs from System.Data as the correct files are in mcs/class/System.Data/System.Data
  199. * Updated all Enums, Interfaces, and Delegates in System.Data