mirror of
https://github.com/dg/dibi.git
synced 2025-01-17 22:28:50 +01:00
19 lines
376 B
PHP
19 lines
376 B
PHP
<!DOCTYPE html><link rel="stylesheet" href="data/style.css">
|
|
|
|
<h1>Importing SQL Dump from File | dibi</h1>
|
|
|
|
<?php
|
|
|
|
require_once 'Nette/Debug.php';
|
|
require_once '../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; |