Download the PHP package doyevaristo/liquet-database without Composer
On this page you can find all versions of the php package doyevaristo/liquet-database. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download doyevaristo/liquet-database
More information about doyevaristo/liquet-database
Files in doyevaristo/liquet-database
Download doyevaristo/liquet-database
More information about doyevaristo/liquet-database
Files in doyevaristo/liquet-database
Vendor doyevaristo
Package liquet-database
Short Description use mysql queries and and efficiently import thousands of records from csv
License MIT
Package liquet-database
Short Description use mysql queries and and efficiently import thousands of records from csv
License MIT
Please rate this library. Is it a good library?
Informations about the package liquet-database
Liquet Database
Simple data MySQL query runner and imports database records from big data CSV.
Made this library for loading layer of Data Warehousing
Features:
- runs query in straight forward manner
- Import huge csv. Either update the existing record or add new records.
Usage:
use Doyevaristo\LiquetDatabase\CsvReader;
use Doyevaristo\LiquetDatabase\LiquetCSVImporter;
use Doyevaristo\LiquetDatabase\LiquetDatabase;
$liquetDatabase = new LiquetDatabase('db_username','db_password','db_database','db_hostname');
$csvReader = new CsvReader();
$csvImporter = new LiquetCSVImporter($liquetDatabase,$csvReader);
$csvImporter
->table('your_table_name')
->import($file);
Notes:
- CSV must have header same with table column name
To Do:
- Improve documentation
- Unit testing
All versions of liquet-database with dependencies
PHP Build Version
Package Version
No informations.
The package doyevaristo/liquet-database contains the following files
Loading the files please wait ....