中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c#中executereader執行查詢的方法是什么

c#
小億
138
2024-03-18 20:46:44
欄目: 編程語言

在C#中,使用SqlCommand對象的ExecuteReader()方法執行查詢。具體步驟如下:

  1. 創建一個SqlConnection對象,用于連接到數據庫。
  2. 創建一個SqlCommand對象,設置CommandText為要執行的查詢語句,并將SqlConnection對象傳入。
  3. 使用SqlCommand對象的ExecuteReader()方法執行查詢,返回一個SqlDataReader對象。
  4. 使用SqlDataReader對象讀取查詢結果。

示例代碼如下:

using System;
using System.Data.SqlClient;

class Program
{
    static void Main()
    {
        string connectionString = "Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;";
        
        using (SqlConnection connection = new SqlConnection(connectionString))
        {
            connection.Open();
            
            string query = "SELECT * FROM MyTable";
            SqlCommand command = new SqlCommand(query, connection);
            
            using (SqlDataReader reader = command.ExecuteReader())
            {
                while (reader.Read())
                {
                    // 讀取查詢結果
                    Console.WriteLine(reader["ColumnName"]);
                }
            }
        }
    }
}

請注意,上述代碼僅為示例,實際應用中需要根據情況做適當的異常處理和資源釋放。

0
临猗县| 星子县| 芦溪县| 新兴县| 德江县| 会泽县| 临颍县| 金山区| 札达县| 六枝特区| 慈利县| 白沙| 齐齐哈尔市| 平安县| 罗田县| 英德市| 黔西县| 清涧县| 合作市| 安泽县| 澳门| 黎平县| 柏乡县| 奈曼旗| 甘南县| 讷河市| 治多县| 新宾| 南江县| 南乐县| 白山市| 景宁| 会泽县| 鄢陵县| 永昌县| 中阳县| 汉源县| 杭州市| 西昌市| 海晏县| 枣强县|