0

我知道这很简单,但我无法思考。显示表中记录的计数并将其显示在文本框中。

private void gMapControl1_Load_1(object sender, EventArgs e)
{
    SqlConnection conDatabase = new SqlConnection(constring);
    conDatabase.Open();
    DataTable db = new DataTable();
    SqlDataAdapter sda = new SqlDataAdapter(
        "select count(site) from [ICPS].[dbo].[excel GPS postcode]",
        conDatabase);

    sda.Fill(db);
    textBox29.Text = ;

    SqlDataAdapter sda = new SqlDataAdapter(
        "select count(site) from [ICPS].[dbo].[excel GPS postcode] "
            + "where Region = '1'",
        conDatabase);

    sda.Fill(db);
    textBox30.Text = ;
}
4

4 回答 4

5

你只需要使用SqlCommand.ExecuteScalar而不是SqlDataAdapter这样:

SqlCommand com = new SqlCommand("select count(site) from [ICPS].[dbo].[excel GPS postcode]", conDatabase);
object count = com.ExecuteScalar();
if(count != null) textBox29.Text = count.ToString();
//The same for textBox30

有关ExecuteScalar的更多信息 请注意,我发布的代码只是为了使用 的想法ExecuteScalar,这取决于您code style在使用 时ADO.NET,您可能想要使用某些using语句,或者以reusecommand, ...自己喜欢的方式使用。

于 2013-10-16T13:53:40.173 回答
3
using (SqlConnection conn = new SqlConnection(connString))
{
   conn.Open();
   cmd.CommandText = "select count(site) from [ICPS].[dbo].[excel GPS postcode]";
   Int32 count = (Int32) cmd.ExecuteScalar();
   textBox29.Text = count.ToString();
}
于 2013-10-16T13:56:48.570 回答
2

如果您希望 sql 命令只返回一个值,请使用命令对象中的ExecuteScalar

string cmdText1 = "select count(site) from [ICPS].[dbo].[excel GPS postcode]";
using(SqlConnection conDatabase = new SqlConnection(constring))
using(SqlCommand cmd = new SqlCommand(cmdText, conDatabase))
{
      conDatabase.Open();
      int numRec = Convert.ToInt32(cmd.ExecuteScalar());
      textBox29.Text = numRec.ToString();
}

MSDN 说

执行查询,并返回查询返回的结果集中第一行的第一列。其他列或行被忽略

但是我注意到您尝试从两个不同的查询中读取记录数。
所以你的代码也可以用这种方式编写,以避免往返数据库

string cmdText = "select count(site) from [ICPS].[dbo].[excel GPS postcode];" + 
                 "select count(site) from [ICPS].[dbo].[excel GPS postcode] " +
                 "where Region = '1'", ;
using(SqlConnection conDatabase = new SqlConnection(constring))
using(SqlCommand cmd = new SqlCommand(cmdText, conDatabase))
{
      conDatabase.Open();
      using(SqlDataReader reader = cmd.ExecuteReader())
      {
          reader.Read();
          int numRec1 = Convert.ToInt32(reader[0]);
          reader.NextResult();
          reader.Read();
          int numRec2 = Convert.ToInt32(reader[0]);
          textBox29.Text = numRec1.ToString();
          textBox30.Text = numRec2.ToString();
      }
}

通过这种方式,我利用了 SQL Server 执行两个或多个用分号分隔的命令的能力。

于 2013-10-16T13:54:58.703 回答
1

要从数据表中获取值,请使用 row[columnName]

 SqlDataAdapter sda = new SqlDataAdapter(
    "select count(site) As siteCount  from [ICPS].[dbo].[excel GPS postcode]",
    conDatabase);


sda.Fill(db);
if(db !=null && db.Rows.Count > 0)
textBox29.Text =db["siteCount"].tostring();
else
textBox29.Text ="0";

但是,正如King King在这里建议的那样,如果您只需要获取单行和单列使用ExecuteScalar方法,为什么要使用数据表。

执行查询,并返回查询返回的结果集中第一行的第一列。其他列或行将被忽略。- MSDN

SqlCommand com = new SqlCommand("select count(site) from [ICPS].[dbo].[excel GPS postcode]", conDatabase);
object siteCount = com.ExecuteScalar();
if(siteCount != null) textBox29.Text = siteCount.ToString();
于 2013-10-16T14:17:53.257 回答