我使用phoenix处理事务,从phoenix.apache.org/transactions.html,我需要在客户端设置phoenix.transactions.enabled=true。但是如何在javajdbc客户机中设置它呢?
6kkfgxo01#
我得到了它。
Properties info = new Properties(); info.setProperty("phoenix.transactions.enabled", Boolean.TRUE.toString()); con = DriverManager.getConnection(url, info);
1条答案
按热度按时间6kkfgxo01#
我得到了它。