mirror of
https://github.com/dg/dibi.git
synced 2025-01-17 14:18:25 +01:00
20 lines
412 B
PHP
20 lines
412 B
PHP
<!DOCTYPE html><link rel="stylesheet" href="data/style.css">
|
|
|
|
<h1>Importing SQL Dump from File | dibi</h1>
|
|
|
|
<?php
|
|
|
|
require dirname(__FILE__) . '/Nette/Debugger.php';
|
|
require dirname(__FILE__) . '/../dibi/dibi.php';
|
|
|
|
|
|
dibi::connect(array(
|
|
'driver' => 'sqlite',
|
|
'database' => 'data/sample.sdb',
|
|
));
|
|
|
|
|
|
$count = dibi::loadFile('compress.zlib://data/sample.dump.sql.gz');
|
|
|
|
echo 'Number of SQL commands:', $count;
|