dcblogdev / sql-import

PDO import sql from a .sql file

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

php Import SQL

Latest Version on Packagist Total Downloads

Logo

PDO import sql from a .sql file

Install

Using composer include the repository by typing the following into a terminal

composer require dcblogdev/sql-import

Usage

Include the composer autoloader, import the Import namespace.

Define your database file path and credentials, the option dropTables, when set to true, will delete all the tables in the database before the sql file gets imported.

The option forceDropTables is optional and not recommended. When enabled together with dropTables, the deletion of tables will be executed with disabled foreign key checks. Only use this method if you are sure that the integrity of the existing data in the database does not matter.

use Dcblogdev\SqlImport\Import;

$filename = 'database.sql';
$username = 'root';
$password = '';
$database = 'sampleproject';
$host = 'dev';
$dropTables = true;
$forceDropTables = false;

new Import($filename, $username, $password, $database, $host, $dropTables, $forceDropTables);

About

PDO import sql from a .sql file

License:MIT License


Languages

Language:PHP 100.0%