|
|
|
หาข้อมูลได้แต่เพิ่มข้อมูลลง DataGridView ไม่ได้ครับ |
|
|
|
|
|
|
|
ยังไม่ได้ลอง Test นะครับถ้า error ก็บอกด้วย
Code (C#)
SqlConnection conn = new SqlConnection();
//conn.Open(); <---เอาออกไม่ต้องมีก็ได้
string new_product = textBox1.Text;
string sql = " SELECT Product_id, Product_name, PType_name, PCost_sell FROM Product_TB WHERE Product_id='" + new_product + "'";
SqlCommand cmd = new SqlCommand( sql , conn );
SqlDataAdapter adapter = new SqlDataAdapter( cmd );
DataTable dt;// = new DataTable();
if ( dataGridView1.DataSource != null ) {
dt = ( DataTable )dataGridView1.DataSource;
} else {
dt = new DataTable();
}
// ถ้าอยากให้มัน clear ก่อนก็ dt.Clear()
adapter.Fill( dt );
dataGridView1.DataSource = dt;
|
|
|
|
|
Date :
2013-04-30 23:22:16 |
By :
SandKing |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบพระคุณอย่างสูงครับบ
|
|
|
|
|
Date :
2013-05-01 01:15:38 |
By :
randomre |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|