C#中的ExecuteScalar()方法用于执行SQL查询,并返回结果集中的第一行第一列的值。以下是使用ExecuteScalar()方法的示例:
using System;
using System.Data.SqlClient;
class Program
{
static void Main()
{
string connectionString = "<your_connection_string>";
string query = "SELECT COUNT(*) FROM Customers";
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
using (SqlCommand command = new SqlCommand(query, connection))
{
int count = (int)command.ExecuteScalar();
Console.WriteLine("Total number of customers: " + count);
}
}
}
}
在上面的示例中,首先需要将<your_connection_string>
替换为实际的数据库连接字符串。然后,定义查询字符串query
,该示例查询了Customers
表中的记录总数。
使用SqlConnection
和SqlCommand
打开数据库连接并执行查询。在ExecuteScalar()
方法返回的结果上使用强制类型转换,以获取查询结果的整数值。最后,将查询结果打印到控制台。
请注意,ExecuteScalar()
方法返回的是一个object
类型的值,因此需要进行适当的强制类型转换来获取实际的结果。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c# trim与String.TrimEnd区别