Hi,
I've recently moved up to Framework 3.5. For some reason, a method
signature on dataAdaptor.fil l that used to work has stopped.
DataTable oDT = new DataTable();
SqlDataAdapter oDA = new SqlDataAdapter( SQLLoadString,
clsGlobalFuncti ons.oSQLConnect ion);
oDA.Fill(oDT, "Movies"); //Error
"The best overloaded method match for
'System.Data.Co mmon.DataAdapte r.Fill(System.D ata.DataTable,
System.Data.IDa taReader)' has some invalid arguments"
The strange thing is, in the Intellisense constructor (3 of 5) says
that the method can take (Dataset dataset, string srcTable).
I'm confused.
Thanks in advance for any help,
Damien
I've recently moved up to Framework 3.5. For some reason, a method
signature on dataAdaptor.fil l that used to work has stopped.
DataTable oDT = new DataTable();
SqlDataAdapter oDA = new SqlDataAdapter( SQLLoadString,
clsGlobalFuncti ons.oSQLConnect ion);
oDA.Fill(oDT, "Movies"); //Error
"The best overloaded method match for
'System.Data.Co mmon.DataAdapte r.Fill(System.D ata.DataTable,
System.Data.IDa taReader)' has some invalid arguments"
The strange thing is, in the Intellisense constructor (3 of 5) says
that the method can take (Dataset dataset, string srcTable).
I'm confused.
Thanks in advance for any help,
Damien
Comment