2

我在网上可以找到的所有内容都是供 asp.net 使用的。我想要的只是每次只从数据库中检索记录的页数。这不可能吗?

瓶颈似乎是上下文的处置。不知道如何解决这个问题。

谢谢。
尼科

4

1 回答 1

-1

如果你只需要一个简单的 sql 查询,你可以使用这个例子:

using System;
using System.Data.SqlClient;

class Program
{
static void Main()
{
    //
    // The name we are trying to match.
    //
    string dogName = "Fido";
    //
    // Use preset string for connection and open it.
    //
    string connectionString = ConsoleApplication1.Properties.Settings.Default.ConnectionString;
    using (SqlConnection connection = new SqlConnection(connectionString))
    {
        connection.Open();
        //
        // Description of SQL command:
        // 1. It selects all cells from rows matching the name.
        // 2. It uses LIKE operator because Name is a Text field.
        // 3. @Name must be added as a new SqlParameter.
        //
        using (SqlCommand command = new SqlCommand("SELECT count(*) FROM Dogs1 WHERE Name LIKE @Name", connection))
        {
            //
            // Add new SqlParameter to the command.
            //
            command.Parameters.Add(new SqlParameter("Name", dogName));
            //
            // Read in the SELECT results.
            //
            SqlDataReader reader = command.ExecuteReader();
            while (reader.Read())
            {
                int count = reader[0];
            }

            // Call Close when done reading.
            reader.Close();
        }
    }
}
}

请记住,您需要找到connectionString您的数据库。取决于你有什么数据库,你可以使用谷歌来了解如何去做。

于 2013-08-20T10:16:57.937 回答