Why the need to commit explicitly when doing an UPDATE?

前端 未结 3 2158
迷失自我
迷失自我 2020-12-03 21:50

Here\'s my code:

import cx_Oracle

conn = cx_Oracle.connect(usr, pwd, url)
cursor = conn.cursor()
cursor.execute(\"UPDATE SO SET STATUS=\'PE\' WHERE ID=\'100         


        
相关标签:
3条回答
  • 2020-12-03 22:08

    The DB-API spec requires that connecting to the database begins a new transaction, by default. You must commit to confirm any changes you make, or rollback to discard them.

    Note that if the database supports an auto-commit feature, this must be initially off.

    Pure SELECT statements, since they never make any changes to the database, don't have to have their changes committed.

    0 讨论(0)
  • 2020-12-03 22:17

    Others have explained why a commit is not necessary on a SELECT statement. I just wanted to point out you could utilize the autocommit property of the Connection object to avoid having to manually execute commit yourself:

    import cx_Oracle
    
    with cx_Oracle.connect(usr, pwd, url) as conn:
        conn.autocommit = True
        cursor = conn.cursor()
        cursor.execute("UPDATE SO SET STATUS='PE' WHERE ID='100'")
        cursor.close()
    

    This is especially useful when you have multiple INSERT, UPDATE, and DELETE statements within the same connection.

    0 讨论(0)
  • 2020-12-03 22:30

    commit is used to tell the database to save all the changes in the current transaction.

    Select does not change any data so there is nothing to save and thus nothing to commit

    See wikipedia for transactions

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