c# IDataReader SqlDataReader difference

会有一股神秘感。 提交于 2019-12-03 12:52:52

SqlDataReader implements the interface IDataReader. So do all other ADO.NET drivers (Oracle, MySql, etc). You can use IDataReader, so that if you plan to change database engine some day, you don't have to rewrite all your SqlDataReader references.

The same goes for IDbConnection, IDbCommand, etc. Of course when creating the connection, you'll need to specify what engine you're using, but aside from that you'll never have to explicitly define which database engine you're using.

Note that IDataReader does not have the HasRows property, and you have to use the Create...() methods to create Commands and Parameters:

IDbCommand command = myDbConnection.CreateCommand();

Instead of:

SqlCommand command = new SqlCommand(myDbConnection);

EDIT: Instead of using the interfaces you may want to use the abstract class DbConnection all ADO.NET providers inherit from. They provide some additional features such as getting schema information, and the aforementioned HasRows property for the DbDataReader. See http://social.msdn.microsoft.com/Forums/en-US/adodotnetdataproviders/thread/759fa77b-8269-4c4a-be90-3c2bdce61d92/ for why the interface hasn't kept up with the abstract class.

The IDataReader and IDataRecord interfaces allow an inheriting class to implement a DataReader class, which provides a means of reading one or more forward-only streams of result sets For more details see this

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!