如何在 jdbc 客户端上使用 phoenix 交易
how to use phoenix transaction with jdbc client
我在交易中使用 phoenix,从 phoenix.apache.org/transactions.html 开始,我需要从我的客户端设置 phoenix.transactions.enabled=true。
但是如何在 java jdbc 客户端中设置它?
我知道了。
Properties info = new Properties();
info.setProperty("phoenix.transactions.enabled", Boolean.TRUE.toString());
con = DriverManager.getConnection(url, info);
我在交易中使用 phoenix,从 phoenix.apache.org/transactions.html 开始,我需要从我的客户端设置 phoenix.transactions.enabled=true。
但是如何在 java jdbc 客户端中设置它?
我知道了。
Properties info = new Properties();
info.setProperty("phoenix.transactions.enabled", Boolean.TRUE.toString());
con = DriverManager.getConnection(url, info);