Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 C#,是否可以OleDbTransaction在两个不同的数据库供应商(例如Microsoft SQL Server和Oracle )中执行插入?
OleDbTransaction
是否可以使用 OleDbTransaction 将数据保存在两个不同的数据库中?
不,因为 anOleDbTransaction与特定的OleDbConnection. 唯一的解决方案是使用 TransactionScope(首选解决方案)或 EnterpriseServices 类。
OleDbConnection