
December 13th, 2001, 05:52 PM
|
|
Contributing User
|
|
Join Date: Dec 2002
Posts: 14,575
  
Time spent in forums: < 1 sec
Reputation Power: 22
|
|
|
<i><b>Originally posted by : Tom McVey (tommcvey@home.com)</b></i><br /><br />Create an OleDbDataAdapter.<br /><br />Create a System.Data.DataTable object.<br />Use the OleDBAdapters Fill method to fill the DataTable.You can then add the DataTable to a DataSet.<br /><br />Dim MyAdapter As OleDbDataAdapter = New OleDbDataAdapter()<br />Dim MyTable As System.Data.DataTable = New DataTable()<br /><br />MyAdapter.Fill(MyTable, rs)<br /><br />' rs is the ADODB.Recordset<br />------------<br />Rob at 4/5/2001 4:23:07 PM<br /><br />I am retreiving a non-dotnet recordset from a DLL. How can I convert it to a dataset? How can I convert it back?<br /><br />Thanks,<br /><br />Rob
|