|
|
|
พี่ครับ ถ้าต้องการสร้าง ปุ่ม Add เพื่อ แอด ข้อมูล เข้าไปในตารางในฐานข้อมูลที่สร้างไว้แล้ว อะครับ (Add Row) |
|
|
|
|
|
|
|
Database อะไรครับ
|
|
|
|
|
Date :
2013-01-18 13:55:46 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Sql server 2005 ครับ
|
|
|
|
|
Date :
2013-01-18 13:57:05 |
By :
lovelyday4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียน แบบ พิมข้อมูล ใน textbox แล้ว กด ปุ่ม add ข้อมูลเข้าไป ใน ตารางฐานข้อมูล sql server 2005 ที่เราได้สร้างไว้แล้ว ครับ c#
|
|
|
|
|
Date :
2013-01-18 14:01:24 |
By :
lovelyday4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
SqlConnection objConn = new SqlConnection();
SqlCommand objCmd = new SqlCommand();
String strConnString,strSQL;
strConnString = "Server=localhost;UID=sa;PASSWORD=;database=mydatabase;Max Pool Size=400;Connect Timeout=600;";
strSQL = "INSERT INTO customer (CustomerID,Name,Email,CountryCode,Budget,Used) " +
" VALUES " +
" ('" + this.txtCustomerID.Text + "','" + this.txtName.Text + "','" + this.txtEmail.Text + "', " +
" '" + this.txtCountryCode.Text + "','" + this.txtBudget.Text + "','" + this.txtUsed.Text + "')";
objConn.ConnectionString = strConnString;
objConn.Open();
objCmd.Connection = objConn;
objCmd.CommandText = strSQL;
objCmd.CommandType = CommandType.Text;
this.pnlAdd.Visible = false;
try
{
objCmd.ExecuteNonQuery();
this.lblStatus.Text = "Record Inserted";
this.lblStatus.Visible = true;
}
catch (Exception ex)
{
this.lblStatus.Visible = true;
this.lblStatus.Text = "Record can not insert Error ("+ ex.Message +")";
}
objConn.Close();
objConn = null;
|
|
|
|
|
Date :
2013-01-18 14:06:31 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้ว ถ้าให้ เลือก field ในฐานข้อมูล sql server จาก combobox ละ ครับ
Code (C#)
private void button1_Click(object sender, EventArgs e)
{
if (comboBox1.Text == "hiE_BRK_cdr")
{
// MessageBox.Show("hiE_BRK_cdr");
selecbase = comboBox1.Text;
Dis();
}
else if (comboBox1.Text == "hiE_Nont_cdr")
{
selecbase = "hiE_Nont_cdr";
Dis();
}
else if (comboBox1.Text == "hiE_Nont2_cdr")
{
selecbase = "hiE_Nont2_cdr";
Dis();
}
else if (comboBox1.Text == "hiE_SRC_cdr")
{
selecbase = "hiE_SRC_cdr";
Dis();
}
else if (comboBox1.Text == "hiQ_BC_cdr")
{
selecbase = "hiQ_BC_cdr";
Dis();
}
else if (comboBox1.Text == "hiQ_CV_cdr")
{
selecbase = "hiQ_CV_cdr";
Dis();
}
else if (comboBox1.Text == "i-SBC_cdr")
{
selecbase = "i-SBC_cdr";
Dis();
}
else if (comboBox1.Text == "SMSCcdr")
{
selecbase = "SMSC_cdr";
Dis();
}
else
{
MessageBox.Show("Please Select");
}
}
โค้ด combobox ที่เขียน ครับ
พอเลือก field นี้จาก combobox แล้ว Add ข้อมูล เข้า field นั้น ครับ
|
|
|
|
|
Date :
2013-01-18 14:35:39 |
By :
lovelyday4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|