2002-11-12 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / class / System.Data / ChangeLog
index fede9eb994005dc8853cbad51984bc3809ed8b8a..32745d1f0f10d42c745e0d5e06b1093143c6e26b 100644 (file)
@@ -1,3 +1,129 @@
+2002-11-12  Tim Coleman <tim@timcoleman.com>
+       * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs:
+       * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
+               Complete these classes
+       * System.Data.Common/DbDataAdapter.cs:
+               Experimental support for FillSchema ()
+
+2002-11-11  Tim Coleman <tim@timcoleman.com>
+        * System.Data/ResDescriptionAttribute.cs:
+        * list
+                New internal class added
+        * System.Data/Constraint.cs:
+        * System.Data/ConstraintCollection.cs:
+        * System.Data/DBConcurrencyException.cs:
+        * System.Data/DataColumn.cs:
+        * System.Data/DataColumnCollection.cs:
+        * System.Data/DataRelation.cs:
+        * System.Data/DataRelationCollection.cs:
+        * System.Data/DataRow.cs:
+        * System.Data/DataRowBuilder.cs:
+        * System.Data/DataRowBuilder.cs:
+        * System.Data/DataRowCollection.cs:
+        * System.Data/DataSet.cs:
+        * System.Data/DataTable.cs:
+        * System.Data/DataTableCollection.cs:
+        * System.Data/DataView.cs:
+        * System.Data/DataViewManager.cs:
+        * System.Data/DataViewSetting.cs:
+        * System.Data/DataViewSettingCollection.cs:
+        * System.Data/ForeignKeyConstraint.cs:
+        * System.Data/ForeignKeyConstraint.cs:
+        * System.Data/InternalDataCollectionBase.cs:
+        * System.Data/MergeFailedEventArgs.cs:
+        * System.Data/StrongTypingException.cs:
+        * System.Data/TypeDataSetGeneratorException.cs:
+        * System.Data/UniqueConstraint.cs:
+        * System.Data.Common/DataAdapter.cs:
+        * System.Data.Common/DataColumnMapping.cs:
+        * System.Data.Common/DataColumnMappingCollection.cs:
+        * System.Data.Common/DataTableMapping.cs:
+        * System.Data.Common/DataTableMappingCollection.cs:
+        * System.Data.Common/DbDataAdapter.cs:
+        * System.Data.Common/DbDataPermission.cs:
+        * System.Data.Common/DbDataPermissionAttribute.cs:
+        * System.Data.Common/DbEnumerator.cs:
+        * System.Data.SqlClient/SqlCommand.cs:
+        * System.Data.SqlClient/SqlCommandBuilder.cs:
+        * System.Data.SqlClient/SqlConnection.cs:
+        * System.Data.SqlClient/SqlDataAdapter.cs:
+        * System.Data.SqlClient/SqlParameter.cs:
+                Add missing attributes, methods, properties based on information
+                from System.Data class status page on go-mono.com.
+
+
+2002-11-10  Ville Palo <vi64pa@koti.soon.fi>
+
+       * System.Data.SqlTypes/SqlString.cs: Now all methods are implemented
+       
+2002-11-09  Tim Coleman <tim@timcoleman.com>
+       * list:
+       * System.Data/DataCategoryAttribute.cs:
+               Add new attribute based on corcompare
+
+2002-11-09  Rodrigo Moya <rodrigo@ximian.com>
+
+       * System.Data.OleDb/OleDbDataAdapter.cs: cleaned up implementation,
+       based on the PgSql/SqlClient data adapter classes.
+
+2002-11-09  Tim Coleman <tim@timcoleman.com>
+       * list:
+               Add new internal tds classes
+       * System.Data.Common/DbDataAdapter.cs:
+       * System.Data.SqlClient/SqlDataAdapter.cs:
+               Change event calling system
+       * System.Data.SqlClient/SqlClientPermission.cs:
+       * System.Data.SqlClient/SqlClientPermissionAttribute.cs:
+       * System.Data.SqlClient/SqlDataReader.cs:
+               Add comments
+       * System.Data.SqlClient/SqlCommand.cs:
+               Some changes to make consistent with .NET based on Sql server traces
+               Implement command timeout
+       * System.Data.SqlClient/SqlCommandBuilder.cs:
+               Make sure that we only build a command if key info found
+       * System.Data.SqlClient/SqlConnection.cs:
+               Change event calling system
+               Some changes to make consistent with .NET based on Sql server traces
+               Implement connection timeout
+       * System.Data.SqlClient/SqlConnectionPool.cs:
+               Implement connection timeout
+       * System.Data.SqlClient/SqlError.cs:
+               Implement ToString ()
+       * System.Data.SqlClient/SqlException.cs:
+               Mucho implementation and cleanup
+       * System.Data.SqlClient/SqlParameter.cs:
+               Implement Clone ()
+       * System.Data.SqlClient/SqlParameterCollection.cs:
+               Code cleanup
+       * System.Data.SqlClient/SqlTransaction.cs:
+               Move some of the transaction creation to SqlConnection to be consistent
+               with .NET SQL traces
+
+2002-11-08  Tim Coleman <tim@timcoleman.com>
+       * System.Data/DataRow.cs:
+       * System.Data/DataTable.cs:
+               Some fix-ups related to the DbDataAdapter to make it work.
+       * System.Data.Common/DbDataAdapter.cs:
+               Fix the Fill () and Update () methods.  These now work
+               fairly well.  Need mucho testing.
+       * System.Data.SqlClient/SqlCommandBuilder.cs:
+               Support table mappings and parameter source versions now.
+       * System.Data.SqlClient/SqlConnection.cs:
+       * System.Data.SqlClient/SqlTransaction.cs:
+               Add set accessor for transaction so that SqlTransaction.Commit ()
+               will remove itself from the connection.
+       * System.Data.SqlClient/SqlDataAdapter.cs:
+               Update/Insert/Delete command should be null by default.
+       * System.Data.SqlClient/SqlException.cs:
+               Remove a TODO attribute
+       * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
+               Properly handle the SqlCommand object
+
+2002-11-08  Ville Palo <vi64pa@koti.soon.fi>
+
+       * System.Data.SqlTypes/SqlDateTime.cs: Now the all methods are 
+       implemented.
+       
 2002-11-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
 
        * System.Data.SqlTypes/SqlDecimal.cs: fixed build. Someone should check