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データベースを見つける必要があることに注意してください。あなたが持っているデータベースに応じて、Googleを使用してその方法を見つけることができます。

于 2013-08-20T10:16:57.937 に答える