Download the PHP package techsemicolon/laravel-query-to-csv without Composer
On this page you can find all versions of the php package techsemicolon/laravel-query-to-csv. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download techsemicolon/laravel-query-to-csv
More information about techsemicolon/laravel-query-to-csv
Files in techsemicolon/laravel-query-to-csv
Package laravel-query-to-csv
Short Description Export the data from a query builder or raw select query into csv directly, eliminating overhead on php and in much less execution time
License MIT
Informations about the package laravel-query-to-csv
Laravel Export To CSV natively in MySQL
Supports Laravel 5.2 and above
Many applications require an export to csv functionality. It's implemented in variety of ways, however many of us face a performance bottleneck when the data to be exported is very huge. PHP application may consum lot of memory resources for each export.
This package is a solution for it where it uses MySQL's SELECT INTO OUTFILE approach. The entire export is performed by MySQL natively. It's extrmely efficient, quick. It eliminates overhead from PHP application utilizing memory to pass selected the query collection for generating CSV. This is extremely handy for systems having large set of rows (like ~1,00,000 row count) of data exported on frequent basis.
If you worry that you need to pass raw queries for it, do not worry. We have got you covered :). You can pass the query builder and it will do the rest internally without causing you an extra overhead.
PS : It work's for local database server. The features for remote database server will be added shortly.
Installation
Install via composer
Register the service Provider
Add service provider to config/app.php
in providers
section
Set up package configuration
After executing following command, you will have querytocsv.php in config
folder
Configurations
The package can be configured from config/querytocsv.php
- 'default-folder' => 'csvexport'
Takes a string which will be the default folder name inside storage folder, where exports will be kept. This can be changed dynamically for every export as explained in further usase section
- 'add-timestamp' => true
Take a boolean. If set to true, it will add timestamp to the csv file name you have specified, if set to false it won't
- 'enable-logging' => true
It's suggested to set this to true in development environments OR on production if you really need it. When set to true, it will add a log entry in following format for each export in log file storage/logs/querytocsv.log
[2017-12-24 13:38:48] local.INFO: Export Execution Time : 1556.09 milliseconds | File : /storage/csvexport/employees1514122727.csv
- 'addlog-row-count' => true
It's suggested to set this to true in development environments OR on production if you really need it. When set to true, it will add the count of rows for each export. This will be useful only when 'enable-logging' is set to true.
[2017-12-24 13:38:48] local.INFO: Export Execution Time : 1556.09 milliseconds | File : /storage/csvexport/employees1514122727.csv | Row Count : 50433
Usage
-
Using Eloquent for export :
-
Using DB Facade :
- Using RAW Query :
Security
We have got you covered from common SQL Injections if you use setRawQuery() method. However if you still discover any issue related to security, please connect back at [email protected]