1
0
mirror of https://github.com/dg/dibi.git synced 2025-01-17 06:08:19 +01:00
php-dibi/examples/importing-dump-from-file.php

24 lines
461 B
PHP
Raw Permalink Normal View History

2017-07-21 21:34:37 +02:00
<?php
declare(strict_types=1);
?>
2010-08-03 12:28:07 +02:00
<!DOCTYPE html><link rel="stylesheet" href="data/style.css">
2018-05-10 21:45:11 +02:00
<h1>Importing SQL Dump from File | Dibi</h1>
2010-08-03 12:28:07 +02:00
2008-07-17 03:51:29 +00:00
<?php
if (@!include __DIR__ . '/../vendor/autoload.php') {
die('Install packages using `composer install`');
}
2008-07-17 03:51:29 +00:00
2018-04-17 10:03:43 +02:00
$dibi = new Dibi\Connection([
'driver' => 'sqlite',
'database' => 'data/sample.s3db',
2015-10-06 01:39:01 +02:00
]);
2008-07-17 03:51:29 +00:00
2018-04-17 10:03:43 +02:00
$count = $dibi->loadFile('compress.zlib://data/sample.dump.sql.gz');
2008-07-17 03:51:29 +00:00
2011-07-01 08:06:36 +02:00
echo 'Number of SQL commands:', $count;