|
|
|
บันทึกข้อมูลไม่ลงฐานข้อมูลครับ แต่ผมไม่เข้าใจ error รบกวนดูให้หน่อยครับ |
|
|
|
|
|
|
|
Parameter ทุกตัวที่สามารถมีค่าเป็น null ต้องเช็คค่า null ก่อนเสมอ เช่น
Code (C#)
if (String.IsNullOrEmpty(full_name))
{
command.Parameters.AddWithValue("@full_name", DBNull.Value);
}
else
{
command.Parameters.AddWithValue("@full_name", full_name);
}
หรือใช้ null-coalescing operator
Code (C#)
cmd.Parameters.AddWithValue("@full_name", full_name ?? (object)DBNull.Value);
|
ประวัติการแก้ไข 2020-03-28 14:02:55
|
|
|
|
Date :
2020-03-28 14:00:04 |
By :
PhrayaDev |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|