Automattic\WooCommerce\Database\Migrations\CustomOrderTable

PostsToOrdersMigrationController::commit_transaction()privateWC 1.0

Commit the current database transaction.

Method of the class: PostsToOrdersMigrationController{}

No Hooks.

Return

true|false. True on success, false on error.

Usage

// private - for code of main (parent) class only
$result = $this->commit_transaction(): bool;

PostsToOrdersMigrationController::commit_transaction() code WC 8.7.0

private function commit_transaction(): bool {
	return $this->db_query( 'COMMIT' );
}