有没有针对分布式事务的支持的解决方法?

问题描述

如果我显式打开一个连接,然后在同一事务范围内打开另一个连接,则会抛出df = pd.DataFrame({'A' : [0,1,2,3],'B' : ['A','B','C','A']}) print(df.dtypes) A int64 B object dtype: object df.to_excel('file.xlsx'index=False) df = pd.read_excel('file.xlsx',index_col=None) print(df.dtypes) A int64 B object dtype: object df = pd.read_excel('file.xlsx',index_col=None,header=None,dtype={0 : 'str',1 : 'str'},skiprows=1) # skip the header row otherwise all cols will be read as strings. print(df.dtypes) 0 object 1 object dtype: object

Looking at GitHub在.NET 5中似乎不再支持,所以想知道解决方法是什么。

请参阅下面的最小代表

System.PlatformNotSupportedException: This platform does not support distributed transactions.

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...