pooriajojo
پنج شنبه 14 اسفند 1393, 14:09 عصر
سلام من میخوام به پایگاه داده اتصال برقرار کنم و select کنم فیلدی . چی کار کنم که اگه آن فیلد با مقدار که تعیین شده قبلا ذخیره شده یا نه . اگه نه یک پیغام بدهد اگه آره کاری انجام دهد .
این را هم نوشتم ولی جواب نداد .
SqlConnection connection = new SqlConnection();
connection.ConnectionString = @"Data Source=(local);Initial Catalog=khadamat;Integrated Security=True";
SqlCommand command = new SqlCommand("select namep,neshanp,idmeli,daraje,id from personel1 where id='" + txid.Text + "'", connection);
connection.Open();
SqlDataReader dr = command.ExecuteReader();
while (dr.Read())
{
string id = "p";
id = (dr["id"].ToString());
if (id == "p")
{
MessageBox.Show("اطلاعات ساختمان ویرایش شد");
}
else
{
txname.Text = (dr["namep"].ToString());
txneshan.Text = (dr["neshanp"].ToString());
txidmeli.Text = (dr["idmeli"].ToString());
txdaraje.Text = (dr["daraje"].ToString());
}
}
connection.Close();
این را هم نوشتم ولی جواب نداد .
SqlConnection connection = new SqlConnection();
connection.ConnectionString = @"Data Source=(local);Initial Catalog=khadamat;Integrated Security=True";
SqlCommand command = new SqlCommand("select namep,neshanp,idmeli,daraje,id from personel1 where id='" + txid.Text + "'", connection);
connection.Open();
SqlDataReader dr = command.ExecuteReader();
while (dr.Read())
{
string id = "p";
id = (dr["id"].ToString());
if (id == "p")
{
MessageBox.Show("اطلاعات ساختمان ویرایش شد");
}
else
{
txname.Text = (dr["namep"].ToString());
txneshan.Text = (dr["neshanp"].ToString());
txidmeli.Text = (dr["idmeli"].ToString());
txdaraje.Text = (dr["daraje"].ToString());
}
}
connection.Close();