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

SQLite Database Integration, version 2.2.10. 29 lines.

- Page: https://pluginprobe.com/plugins/sqlite-database-integration/2.2.10/code/load.php
- Raw: https://pluginprobe.com/plugins/sqlite-database-integration/2.2.10/raw/load.php
- Modified: 2025-09-19T07:22:08+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.2.10/code/load.php#L10-L20`.

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

/**
 * Load the "SQLITE_DRIVER_VERSION" constant.
 * This constant needs to be updated on plugin release!
 */
require_once __DIR__ . '/version.php';

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';

```
