|
|
|
C# Parameters Query พี่ครับ ช่วยดู Code ให้หน่อยครับ พอดีบันทึกแล้วมันไม่ลงฐานข้อมูลอ่ะครับ |
|
|
|
|
|
|
|
Code (C#)
try
{
string sql = null;
sb = new StringBuilder();
sb.Remove(0, sb.Length);
//conn.Open();
sb.Append("INSERT INTO Personnel(ID_Card, Name_pers, Date_start)");
sb.Append(" VALUES(@ID_Card,@Name_pers,@Date_start)");
sql = sb.ToString();
Com = new SqlCommand();
var _with1 = Com;
_with1.CommandText = sql;
_with1.CommandType = CommandType.Text;
_with1.Connection = conn;
_with1.Parameters.Clear();
_with1.Parameters.Add("@ID_Card", SqlDbType.VarChar).Value = txtID_Card.Text.Trim();
_with1.Parameters.Add("@Name_pers", SqlDbType.VarChar).Value = txtName.Text.Trim();
_with1.Parameters.Add("@Date_start", SqlDbType.DateTime).Value = Calendar1.SelectedDate;
_with1.ExecuteNonQuery();
//conn.Close();
//_return = 1;
}
catch (Exception ex)
{
ErrorMsg = ex.Message.ToString();
_return = 0;
}
Response.Write("บันทึกข้อมูล");
}
เนี่ยครับ มันไม่ขึ้น เออเลอร์อะไรเลย ผมลองดีบัคแล้ว ข้อมูลก็ไม่ขึ้น งงมากเลยครับ รบกวนหน่อยนะครับ
Tag : .NET, Ms SQL Server 2008, C#
|
|
|
|
|
|
Date :
2013-08-26 13:35:41 |
By :
Bill17259 |
View :
819 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดู Code แล้วก็ไม่มีอะไรผิดน่ะครับ
|
|
|
|
|
Date :
2013-08-26 16:03:47 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แสดงว่า ผมต้อง Connect ผิดแน่ๆ เลยใช่ไหมครับ
แต่มันไม่แสดง เออเลอร์เลย อ่ะครับ งงเต็กเลย
|
ประวัติการแก้ไข 2013-08-26 16:14:14
|
|
|
|
Date :
2013-08-26 16:13:52 |
By :
Bill17259 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|