pedrosoares / sqlfileloader
Manipulate SQL files.
1.0.2
2016-11-23 16:29 UTC
Requires
- php: >=5.5.9
This package is not auto-updated.
Last update: 2024-11-18 14:06:30 UTC
README
Read the SQL file, remove all comments, and separate each command for manipulation.
Instation
Put in your composer file the command bellow.
"pedrosoares/sqlfileloader": "1.0.*"
The field "require" shoud be like:
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*",
"pedrosoares/sqlfileloader": "1.0.*"
}
How use
To load a file and get all sql commands, you can do in this way:
$c = new SqlFileLoader("PATH to the sql file");
foreach($c->getStatements() as $sqlCommand){
DB::statement($sqlCommand);
}