程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C# 查詢一個值方法ExecuteScalar()

C# 查詢一個值方法ExecuteScalar()

編輯:C#入門知識

需要從SQL查詢中返回一個值,如表中記錄數。可以使用ExecuteScalar()方法,這個方法只返回一個值。如下邊控制台應用程序代碼所示:

using System.Data;
using System.Data.SqlClient;

namespace ExecuteScalar
{
    class Program
    {
        static void Main(string[] args)
        {
            SqlConnection thisConnection = new SqlConnection(
     @"Data Source=scott;Initial Catalog=northwind;Persist Security Info=True;User ID=sa;Password=sa123");

            thisConnection.Open();

            SqlCommand thisCommand = thisConnection.CreateCommand();
            thisCommand.CommandText = "select count(*) from customers";

            //ExecuteScalar:執行只返回一個值的SQL命令。
            object countResult = thisCommand.ExecuteScalar();
            Console.WriteLine("Count of Customers={0}",countResult);

            Console.ReadLine();

            thisConnection.Close();
        }
    }
}

 

結果為:

 Count of Customers=91

      

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved