0
私はトランザクションでphoenixを使用しています。phoenix.apache.org/transactions.htmlから、クライアント側からphoenix.transactions.enabled = trueを設定する必要があります。jdbcクライアントでphoenixトランザクションを使用する方法
しかし、どのようにjava jdbcクライアントでそれを設定するには?
私はトランザクションでphoenixを使用しています。phoenix.apache.org/transactions.htmlから、クライアント側からphoenix.transactions.enabled = trueを設定する必要があります。jdbcクライアントでphoenixトランザクションを使用する方法
しかし、どのようにjava jdbcクライアントでそれを設定するには?
私はそれを得ました。
Properties info = new Properties();
info.setProperty("phoenix.transactions.enabled", Boolean.TRUE.toString());
con = DriverManager.getConnection(url, info);