intTypePromotion=1
zunia.vn Tuyển sinh 2024 dành cho Gen-Z zunia.vn zunia.vn
ADSENSE

Retrieving a Single Value from a Query

Chia sẻ: Bui Tuan | Ngày: | Loại File: PDF | Số trang:2

75
lượt xem
5
download
 
  Download Vui lòng tải xuống để xem tài liệu đầy đủ

[ Team LiB ] Recipe 9.10 Retrieving a Single Value from a Query Problem Given a stored procedure that returns a single value, you need the fastest way to get this data. Solution Use the ExecuteScalar( )

Chủ đề:
Lưu

Nội dung Text: Retrieving a Single Value from a Query

  1. [ Team LiB ] Recipe 9.10 Retrieving a Single Value from a Query Problem Given a stored procedure that returns a single value, you need the fastest way to get this data. Solution Use the ExecuteScalar( ) method to return a single value from a stored procedure. The sample code uses the ExecuteScalar( ) method to get the number of records in the Orders table of the Northwind database. The C# code is shown in Example 9-13. Example 9-13. File: ExecuteScalarForm.cs // Namespaces, variables, and constants using System; using System.Configuration; using System.Data.SqlClient; // . . . String sqlText = "SELECT COUNT(*) FROM Orders"; // Create the connection and the command. SqlConnection conn = new SqlConnection( ConfigurationSettings.AppSettings["Sql_ConnectString"]); SqlCommand cmd = new SqlCommand(sqlText, conn); conn.Open( ); // Execute the scalar SQL statement and store results. int count = Convert.ToInt32(cmd.ExecuteScalar( )); conn.Close( ); resultTextBox.Text="Count of Orders records: " + count; Discussion
  2. The ExecuteScalar( ) method of the Command object returns a single value from the data source rather than a table or data stream. While the ExecuteScalar( ) method does not result in a performance improvement when compared to retrieving a single value using an output parameter or using a DataReader, it allows a single value to be returned with the least code and may therefore improve readability and maintainability. If the result set returns more than one result, the first column of the first row is returned as a scalar value. A null reference is returned if the result set is empty or if the result set is a Ref Cursor when using the Oracle .NET data provider. [ Team LiB ]
ADSENSE

CÓ THỂ BẠN MUỐN DOWNLOAD

 

Đồng bộ tài khoản
2=>2