|
|
|
รบกวนหน่อยครับหาวิธีแก้ไข โปรแกรมของเรากำลังบันทึกข้อมูลอยู่ แต่ช่วงบันทึกเกิดไฟดับ จะทำยังไงให้มันไม่ให้บันทึกข้อมูลลงไป |
|
|
|
|
|
|
|
begintran
commit
rollback
|
|
|
|
|
Date :
2011-10-14 15:01:40 |
By :
พรเทพ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วถ้าบันทึกหลาย เทเิบิล พร้อมกันละครับ ต้องใส่ Transaction ยังไงครับ
|
|
|
|
|
Date :
2011-10-14 16:52:00 |
By :
Testprogram |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ประวัติการแก้ไข 2011-10-14 18:26:20
|
|
|
|
Date :
2011-10-14 18:25:45 |
By :
Testprogram |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
private void Form1_Load(object sender, EventArgs e)
{
string query = "blablabla";
string connectionString = "blablabla";
using (SqlConnection sqlConnection = new SqlConnection(connectionString))
{
sqlConnection.Open();
SqlTransaction SqlTransaction = sqlConnection.BeginTransaction();
SqlCommand sqlCommand = new SqlCommand(query, sqlConnection, SqlTransaction);
sqlCommand.ExecuteNonQuery();
SqlTransaction.Commit();
}
}
|
|
|
|
|
Date :
2011-10-14 20:20:05 |
By :
numenoy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|