我对ADO.NET的理解感到困惑,在阅读了几篇文章后,我并不清楚什么是性能考虑.
>什么是ADO.NET以及性能考虑因素?
> ADO.NET可能与sql STORED PROCEDURES相关联或者是不同的东西?
多谢你们!
解决方法
将Ado.net视为托管库,提供您(和可能使用)访问外部数据源所需的所有类和功能.这是最简单的思考方式.但由于它不是一个单独的库(因为它包含在.net库中),人们往往会感到困惑.我们可以说它是.net中的一个库.
可以在Wikipedia找到更彻底的解释.
存储过程是特定数据存储的一部分. Ado.net使您能够以标准化方式调用这些存储过程.
来自MSDN的一个例子
using (sqlConnection connection = new sqlConnection(connectionString)) { // Create the Command and Parameter objects. sqlCommand command = new sqlCommand(queryString,connection); command.Parameters.AddWithValue("@pricePoint",paramValue); // Open the connection in a try/catch block. // Create and execute the DataReader,writing the result // set to the console window. try { connection.Open(); sqlDataReader reader = command.ExecuteReader(); while (reader.Read()) { Console.WriteLine("\t{0}\t{1}\t{2}",reader[0],reader[1],reader[2]); } reader.Close(); } catch (Exception ex) { Console.WriteLine(ex.Message); } Console.ReadLine(); }
您可以看到Ado.net类的使用: