|
|
|
อ่านข้อมูลจากฐานข้อมูลแล้วเอามาใส่ลงใน Label ไม่ขึ้นครับ ช่วยดูโค้ให้ที มันไม่ขึ้นอะไรเลย |
|
|
|
|
|
|
|
โค้อ ประมาณ นี้ครับ
ตัวแปร strID คือ 1
Code (C#)
SqlConnection conn = new SqlConnection("Data Source=PROGRAMMER;Initial Catalog=DBPersonal;User ID=kamikung;password=749200;Integrated Security=True");
conn.Open();
string sql;
sql = "select Name,Gender,Birthday,Phone,Email,Status,Category,Position,Academic,Operations,Agencies From MyPersonal WHERE Pid='" + strID1 + "'";
SqlCommand cmd = new SqlCommand(sql,conn);
SqlDataAdapter Adapter = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
Adapter.Fill(dt);
conn.Close();
if(dt.Rows.Count>0)
{
textName.Text = dt.Rows[0]["Name"].ToString();
textGender.Text = dt.Rows[0]["Gender"].ToString();
textBirthday.Text = dt.Rows[0]["Birthday"].ToString();
textPhone.Text = dt.Rows[0]["Phone"].ToString();
textEmail.Text = dt.Rows[0]["Email"].ToString();
textStatus.Text = dt.Rows[0]["Status"].ToString();
textCategory.Text = dt.Rows[0]["Category"].ToString();
textPosition.Text = dt.Rows[0]["Position"].ToString();
textAcademic.Text = dt.Rows[0]["Academic"].ToString();
textOperatins.Text = dt.Rows[0]["Operations"].ToString();
textAgencies.Text = dt.Rows[0]["Agencies"].ToString();
}
dt = null;
Tag : .NET
|
|
|
|
|
|
Date :
2012-09-14 14:59:03 |
By :
kantarasukan |
View :
1082 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง bug ดูยังครับว่า query แล้วได้อะไรออกมา
ใช่ที่ต้องการมั๊ย ถ้าไม่ใช่ก็แก้ query
|
|
|
|
|
Date :
2012-09-14 16:04:17 |
By :
mixarstudio |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้า Pid Data Type คือ Integer ต้องเอา ' single quote ออกครับ
Code (C#)
sql = "select Name,Gender,Birthday,Phone,Email,Status,Category,Position,Academic,Operations,Agencies From MyPersonal WHERE Pid= " + strID1 + "";
|
|
|
|
|
Date :
2012-09-14 20:19:28 |
By :
kittipongs |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|