Automattic\WooCommerce\Database\Migrations\CustomOrderTable

PostsToOrdersMigrationController::commit_transactionprivateWC 1.0

Commit the current database transaction.

Метод класса: PostsToOrdersMigrationController{}

Хуков нет.

Возвращает

bool. True on success, false on error.

Использование

// private - только в коде основоного (родительского) класса
$result = $this->commit_transaction(): bool;

Код PostsToOrdersMigrationController::commit_transaction() WC 11.1.0

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