在.NET中,使用ExecuteReader方法來執(zhí)行SQL查詢并返回一個DataReader對象,可以使用以下步驟:
string connectionString = "your_connection_string";
SqlConnection connection = new SqlConnection(connectionString);
connection.Open();
string query = "SELECT * FROM your_table";
SqlCommand command = new SqlCommand(query, connection);
SqlDataReader reader = command.ExecuteReader();
while (reader.Read())
{
// 讀取數(shù)據(jù)
string column1 = reader.GetString(0); // 根據(jù)列索引獲取字符串類型的數(shù)據(jù)
int column2 = reader.GetInt32(1); // 根據(jù)列索引獲取整型數(shù)據(jù)
//...
}
reader.Close();
connection.Close();
請注意,使用完DataReader對象后需要關(guān)閉它,以及在不再需要數(shù)據(jù)庫連接時關(guān)閉連接。另外,為了避免資源泄漏,還可以使用using語句來自動釋放資源,如下所示:
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
//...
}