File: import.schema.php

package info (click to toggle)
php-mdb2 2.5.0b5-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 956 kB
  • sloc: php: 9,735; xml: 1,741; pascal: 126; makefile: 5
file content (24 lines) | stat: -rw-r--r-- 503 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

/**
 * A means to create the database and tables used by the test suite.
 *
 * The test suite builds the requisite structures automatically.  This script
 * is made available in the event you want to do so manually.
 *
 * @package MDB2
 * @category Database
 * @author Daniel Convissor <danielc@php.net>
 */

error_reporting(E_ALL & ~E_STRICT & ~E_DEPRECATED);

/**
 * Establish the test suite's environment.
 */
require_once __DIR__ . '/autoload.inc';

mdb2_test_db_object_provider();

?>
DONE!