What happens if you don't commit a transaction to a database (say, SQL Server)?

前端 未结 9 2226
礼貌的吻别
礼貌的吻别 2020-11-27 03:08

Suppose I have a query:

begin tran
-- some other sql code

And then I forget to commit or roll back.

If another client tries to exec

相关标签:
9条回答
  • 2020-11-27 03:30

    The behaviour is not defined, so you must explicit set a commit or a rollback:

    http://docs.oracle.com/cd/B10500_01/java.920/a96654/basic.htm#1003303

    "If auto-commit mode is disabled and you close the connection without explicitly committing or rolling back your last changes, then an implicit COMMIT operation is executed."

    Hsqldb makes a rollback

    con.setAutoCommit(false);
    stmt.executeUpdate("insert into USER values ('" +  insertedUserId + "','Anton','Alaf')");
    con.close();
    

    result is

    2011-11-14 14:20:22,519 main INFO [SqlAutoCommitExample:55] [AutoCommit enabled = false] 2011-11-14 14:20:22,546 main INFO [SqlAutoCommitExample:65] [Found 0# users in database]

    0 讨论(0)
  • 2020-11-27 03:34

    Example for Transaction

    begin tran tt

    Your sql statements

    if error occurred rollback tran tt else commit tran tt

    As long as you have not executed commit tran tt , data will not be changed

    0 讨论(0)
  • 2020-11-27 03:37

    You can actually try this yourself, that should help you get a feel for how this works.

    Open a two windows (tabs) in management studio, each of them will have it's own connection to sql.

    Now you can begin a transaction in one window, do some stuff like insert/update/delete, but not yet commit. then in the other window you can see how the database looks from outside the transaction. Depending on the isolation level, the table may be locked until the first window is committed, or you might (not) see what the other transaction has done so far, etc.

    Play around with the different isolation levels and no lock hint to see how they affect the results.

    Also see what happens when you throw an error in the transaction.

    It's very important to understand how all this stuff works or you will be stumped by what sql does, many a time.

    Have fun! GJ.

    0 讨论(0)
提交回复
热议问题