我使用 JDBC驱动程序v2.2.13
连接到远程数据库,如下所示Connection conn = (OrientJdbcConnection) DriverManager.getConnection("jdbc:orient:remote:" + ip + ":" + port + ";" + ip + ":" + port2 + "/"
+ appName, info);
创建边缘时,我在警告下面显示服务器日志
WARNI {db=Sun} Requested command 'create edge type '_F_ as subclass of 'E'' must be executed outside active transaction: the transactional will be committed and reopen right after it. To avoid this behavior execute it outside a transaction [OrientGraph]
从警告看,它看起来像数据库的实例(连接conn)是事务性的。
解决此问题的一种方法是使用Java API使用 OrientgraphNoTx 数据库实例。
我该怎么做"非交易"为定向JDBC驱动程序提交等效 OrientgraphNoTx