の行を数えようとしていますSomeColumn=SomeValue
。私のコードを以下に示します。それは何も示していません。
using (SqlConnection conn = new SqlConnection("ConnectionString"))
{
conn.Open();
string selectStatement = "Select count(*) from Jobs where 'JobCategory=cse'";
SqlCommand cmd = new SqlCommand(selectStatement, conn);
int count = (int)cmd.ExecuteScalar();
Label1.Text = count.ToString();
conn.Close();
どのような手順を踏む必要がありますか?