# sqlite-database-integration/2.1.15/load.php

SQLite Database Integration, version 2.1.15. 23 lines.

- Page: https://pluginprobe.com/plugins/sqlite-database-integration/2.1.15/code/load.php
- Raw: https://pluginprobe.com/plugins/sqlite-database-integration/2.1.15/raw/load.php
- Modified: 2024-09-04T10:18:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sqlite-database-integration/2.1.15/code/load.php#L10-L20`.

```php
<?php
/**
 * Plugin Name: SQLite Database Integration
 * Description: SQLite database driver drop-in.
 * Author: The WordPress Team
 * Version: 2.1.15
 * Requires PHP: 7.0
 * Textdomain: sqlite-database-integration
 *
 * This feature plugin allows WordPress to use SQLite instead of MySQL as its database.
 *
 * @package wp-sqlite-integration
 */

define( 'SQLITE_MAIN_FILE', __FILE__ );

require_once __DIR__ . '/php-polyfills.php';
require_once __DIR__ . '/admin-page.php';
require_once __DIR__ . '/activate.php';
require_once __DIR__ . '/deactivate.php';
require_once __DIR__ . '/admin-notices.php';
require_once __DIR__ . '/health-check.php';

```
