开发者

How can we Rollback a transaction?

开发者 https://www.devze.com 2023-02-15 05:38 出处:网络
Is there any direct method in android to Rollback a transaction?? If n开发者_如何学编程o then how can we Rollback a Transaction?It is handled automatically; see this thread for details.Presuming you\'

Is there any direct method in android to Rollback a transaction?? If n开发者_如何学编程o then how can we Rollback a Transaction?


It is handled automatically; see this thread for details.


Presuming you're using SQLite, simply use the standard SQL transaction syntax

START TRANSACTION
// SQL Here
ROLLBACK TRANSACTION
// or
END TRANSACTION
0

精彩评论

暂无评论...
验证码 换一张
取 消