รายละเอียดของการตอบ ::
มันเหมาะสำหรับมือใหม่ครับ
ผมเพิ่งมาจับเรื่อง DB 3 เดือนตอนแรกมีปัญหามากกับ SQL เพราะว่าผมไม่ได้จบมาโดยตรง(พอดีโนบังคับให้ทำ



)
แต่พอลองใช้ data sources ที่ติดมากับ vs 2012 ผมก็ลืมเรื่อง SQL ไปเลย 5555
เราทำงาน DBจะต้องการอะไรมากมายก็แค่ Insert Update Delete Search
แค่ data sources ตัวเดียวก็ครบแระครับ
ตั้งแต่ผมใช้ data sourcesและรู้จักการใส่ parameter ในการค้นหา ผมก็ไม่มีคำถามเกี่ยวกับ SQL อีกเลย
อยากให้มือใหม่ใช้ดู
คร่าวๆก็แค่ add data sources ที่ตั้งการใช้งาน

เสร็จแระครับเมื่อเราเลือก table ที่ต้องการ มันจะป้อน command,connection,adapter ต่างๆสำหรับ Insert Update Deleteเรียบร้อย
กว่าเราจะรู้เราก็ทำเส็จไป 10 กว่าตารางแล้ว 555
ที่เหลือก็แค่ลากครับ
ถ้าต้องการทั้ง ตารางก็ลากตารางลงฟอร์ม(มันจะเพิ่มทุกอย่างที่จำเป็นต้องใช้งานมาครับ)
Code (C#)
private void Form1_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'bASEDataSet.Company_Position' table. You can move, or remove it, as needed.
this.company_PositionTableAdapter.Fill(this.bASEDataSet.Company_Position);
}
private void company_PositionBindingNavigatorSaveItem_Click(object sender, EventArgs e)
{
this.Validate();
this.company_PositionBindingSource.EndEdit();
this.tableAdapterManager.UpdateAll(this.bASEDataSet);
}
///
// position_NAME_1TextBox
//
this.position_NAME_1TextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.company_PositionBindingSource, "Position_NAME_1", true));
// position_NAME_2TextBox
//
this.position_NAME_2TextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.company_PositionBindingSource, "Position_NAME_2", true));