예제 #1
0
def commit_manually(using=None):
    method = django_transaction.commit_manually
    return snf_transaction._transaction_func("im", method, using)
예제 #2
0
def commit_on_success(using=None):
    method = django_transaction.commit_on_success
    return snf_transaction._transaction_func("im", method, using)
예제 #3
0
def commit_manually(using=None):
    method = transaction.commit_manually
    return _transaction_func("db", method, using)
예제 #4
0
def commit_on_success(using=None):
    method = transaction.commit_on_success
    return _transaction_func("db", method, using)
예제 #5
0
def commit_manually(using=None):
    method = django_transaction.commit_manually
    return snf_transaction._transaction_func("im", method, using)
예제 #6
0
def commit_on_success(using=None):
    method = django_transaction.commit_on_success
    return snf_transaction._transaction_func("im", method, using)