编程实现将BMS数据库中books表的记录个数存入到局部变量,并且通过局部变量显示出来
时间: 2024-02-21 15:58:41 浏览: 70
图书管理系统编程
假设你使用的是C#语言,可以使用以下代码将BMS数据库中books表的记录个数存入到局部变量,并通过局部变量显示出来:
```csharp
using System;
using System.Data.SqlClient;
class Program
{
static void Main(string[] args)
{
string connectionString = "Data Source=(localdb)\\MSSQLLocalDB;Initial Catalog=BMS;Integrated Security=True";
string query = "SELECT COUNT(*) FROM books";
using (SqlConnection connection = new SqlConnection(connectionString))
{
SqlCommand command = new SqlCommand(query, connection);
connection.Open();
int count = (int)command.ExecuteScalar(); // 将查询结果存入到局部变量 count 中
Console.WriteLine("The number of records in the books table is: " + count); // 显示局部变量 count 的值
}
}
}
```
在上面的代码中,我们使用 SqlConnection 和 SqlCommand 类来连接到 BMS 数据库,并执行 SQL 查询语句。通过调用 ExecuteScalar() 函数,我们可以将查询结果存入到一个对象中,然后将其转换为 int 类型。最后,我们将存储在局部变量 count 中的值显示出来。
阅读全文