cherrylzhao commented on issue #2061: proxy can't support multiple transaction
URL: 
https://github.com/apache/incubator-shardingsphere/issues/2061#issuecomment-475167387
 
 
   we have fixed this error in current dev branch(4.0.0-RC1-SNAPSHOT).
   and I want to tell you XA transaction only support transaction between begin 
and commit/rollback. it looks like this:
   
    ```
      XATransaction.begin
        statement1.execute("sq1");           -- sq1 and sql2 will use XA 
transaction
        statement2.execute("sql2");
      XATransaction.commit
         stemet1.execute("sql3");            --  "sql3" will use local auto 
commit transaction
   
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to