8.1 事务处理

事务可用于将操作组合成原子单元。事务的所有操作要么全部成功提交,要么全部失败。只要事务未提交,就可以回滚事务。

事务可以通过在会话中使用 startTransaction() 方法启动,通过 commitTransaction() 方法提交,并通过 rollbackTransaction() 方法取消或回滚。以下示例说明了这一点。此示例假定 test 模式已存在,并且集合 my_collection 不存在。

from mysqlsh import mysqlx

# Connect to server
mySession = mysqlx.get_session( {
        'host': 'localhost', 'port': 33060,
        'user': 'user', 'password': 'password' } )

# Get the Schema test
myDb = mySession.get_schema('test')

# Create a new collection
myColl = myDb.create_collection('my_collection')

# Start a transaction
mySession.start_transaction()
try:
    myColl.add({'name': 'Rohit', 'age': 18, 'height': 1.76}).execute()
    myColl.add({'name': 'Misaki', 'age': 24, 'height': 1.65}).execute()
    myColl.add({'name': 'Leon', 'age': 39, 'height': 1.9}).execute()
    # Commit the transaction if everything went well
    mySession.commit()
    print('Data inserted successfully.')
except Exception as err:
    # Rollback the transaction in case of an error
    mySession.rollback()

    # Printing the error message
    print('Data could not be inserted: %s' % str(err))