|
|
|
ช่วยด้วยครับ ถามเรื่อง การดึงข้อมูลมาจาก database ครับ |
|
|
|
|
|
|
|
คือ มันไม่ดึงข้อมูลจาก database ให้อะคับ
ช่วยดูหน่อยคับ ขอบคุณคับ
string sqlString = ("SELECT Prefix,Sex,FirstName,LastName,Nationality,BirthDay,[E-mail],Phone,Street,Country,Zipcode FROM Customer1 Where UserID = " + UserID + " ");
DatabaseManager dbManager = new DatabaseManager("HotelReservation");
DataTable result = dbManager.ReadData(sqlString);
if (result.Rows.Count > 0)
{
prefix.Text = result.Rows[0]["Prefix"].ToString();
sex.Text = result.Rows[0]["Sex"].ToString();
fname.Text = result.Rows[0]["FirstName"].ToString();
lname.Text = result.Rows[0]["LastName"].ToString();
nationality.Text = result.Rows[0]["Nationality"].ToString();
birthday.Text = result.Rows[0]["BirthDay"].ToString();
email.Text = result.Rows[0]["[E-mail]"].ToString();
phone.Text = result.Rows[0]["Phone"].ToString();
street.Text = result.Rows[0]["Street"].ToString();
country.Text = result.Rows[0]["Country"].ToString();
zipcode.Text = result.Rows[0]["Zipcode"].ToString();
}
Tag : - - - -
|
|
|
|
|
|
Date :
2010-01-26 00:24:11 |
By :
k1245689 |
View :
1252 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้ว error ว่าอะไรอ่ะ ขยายความหน่อยสิ จะรู้มั้ย
ที่คิดได้ result เป็น null ก็แก้ว่า
if(result != null && result.Rows.Count > 0)
{
...
}
|
|
|
|
|
Date :
2010-01-27 13:36:04 |
By :
numenoy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันไม่ error คับ
แต่ไม่ ไม่ดึงข้อมูลจาก database ให้อะคับ
ลอง query ดูแล้ว ข้อมูลก้มีครบทุกอย่าง
|
|
|
|
|
Date :
2010-01-27 21:10:26 |
By :
k1245689 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ทราบว่าใช้ Mysql ป่าวคับ
ถ้า Mysql พอช่วยได้
|
|
|
|
|
Date :
2010-02-03 22:12:57 |
By :
muai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำได้แล้วคับ
ขอบคุณมากๆคับ
|
|
|
|
|
Date :
2010-02-03 22:52:07 |
By :
k1245689 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|