Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (11.7 KB, 2 trang )
[ 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( ));