|
|
|
ASP.Net (C#) Insert ไม่ได้ เพราะ อะไร แต่ลองใช้ วิธีอื่นได้ วิธีนี้ไม่ได้ใช้นาน |
|
|
|
|
|
|
|
มี Error หรือเปล่าครับ
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;
objCmd.ExecuteNonQuery();
(C#) ASP.NET SQL Server Add/Insert Record
|
|
|
|
|
Date :
2013-06-19 17:55:14 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cmd.ExecuteNonQuery(); หรือยังครับ
|
|
|
|
|
Date :
2013-06-19 18:08:04 |
By :
01000010 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|