Skip to content

Commit

Permalink
* OleDbDataAdapter.cs: added stub for missing
Browse files Browse the repository at this point in the history
Dispose override

svn path=/trunk/mcs/; revision=28819
  • Loading branch information
Gert Driesen committed Jun 4, 2004
1 parent 58557e4 commit bd31f01
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
13 changes: 9 additions & 4 deletions mcs/class/System.Data/System.Data.OleDb/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
2004-06-04 Gert Driesen <[email protected]>

* OleDbDataAdapter.cs: added stub for missing
Dispose override

2004-06-02 Gert Driesen <[email protected]>

* OleDbParameter.cs: added missing attributes
* OleDbPermission.cs: added missing attributes
* OleDbConnection.cs: added missing attributes
* OleDbDataAdapter.cs: added missing attributes
* OleDbParameter.cs: added missing attributes
* OleDbPermission.cs: added missing attributes
* OleDbConnection.cs: added missing attributes
* OleDbDataAdapter.cs: added missing attributes

2004-05-27 Atsushi Enomoto <[email protected]>

Expand Down
6 changes: 6 additions & 0 deletions mcs/class/System.Data/System.Data.OleDb/OleDbDataAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -238,5 +238,11 @@ public int Fill(DataSet dataset, Object adoDBRecordSet, String srcTable) {

#endregion // Events and Delegates

[MonoTODO]
protected override void Dispose (bool disposing)
{
base.Dispose (disposing);
}

}
}

0 comments on commit bd31f01

Please sign in to comment.