RE: cannot fill dataset from recordset in SSIS SaveCheckpoints set to -
06-15-2010
, 05:41 PM
Here is the sample code:
ADODB.Recordset rs =
(ADODB.Recordset)Dts.Variables["Accounts"].Value;
System.Data.OleDb.OleDbDataAdapter myDA = new
System.Data.OleDb.OleDbDataAdapter();
DataSet myDS = new DataSet("account");
myDA.Fill(myDS, rs, "account"); |