Hello Please give tutorial on IDatabase,IDataadapter,Icommand .
Thanks,
In advance
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sukesh MarlaPosted Oct 10, 2012, 1:27 PM
Same about ICOmmand
They are mostly used when we are dealing with multiple types of databases like SQL,OLEDB or we try to create somthing more in generic
like for example
public void DAtaTable GetRecords(ICommand c){....}
One can call it as
DatTable dt=GetRecords(new SqlCommand())
OR DatTable dt=GetRecords(new OledbCommand())
Hope you understood, check this is correct answer if it helped.