elysiumrealms/sql-interceptor

SQL Interceptor for Laravel

v1.0.4 2024-06-20 15:04 UTC

This package is auto-updated.

Last update: 2025-03-20 17:02:49 UTC


README

Description

SQLInterceptor is a tool for intercepting SQL queries. It can be used to perform a dry-run and capture SQL queries being executed within a closure.

Features

  • Intercept SQL queries

    use Elysiumrealms\SQLInterceptor\SQLInterceptor;
    
    class TaskExcelExporter extends AbstractExporter
    {
        public function export()
        {
            $queries =  SQLInterceptor::intercept(function () {
    
                // Complex logic which fetch from database connection
                // and cannot be pass into Laravel Job
    
            })->queries();
    
            // Pass into Laravel Job execyte async
            dispatch(new AsyncQueryJob($queries));
        }
    }