In the past, all my db needs have been resolved with sqlite. Now, when designing a db that could potentially be large, I reviewed Distributed Transaction. How do I program this? I found some results explaining which distributed transaction is, but does not explain how to program it.
I know that there are several transactions in the code that I might want to make into a larger transaction. I am using .NET. How can I do something like creating a user, where his PC is in one database, and his user information, such as name and settings, is in another database. This may be a separate question, but if I have two functions. One updates the media description, and the other updates content that can reside on the same server or separately. How do I insert these transactions and only commit at the end?
user34537
source share