# performance-lab/2.1.0/modules/database/sqlite/load.php

Performance Lab, version 2.1.0. 18 lines.

- Page: https://pluginprobe.com/plugins/performance-lab/2.1.0/code/modules/database/sqlite/load.php
- Raw: https://pluginprobe.com/plugins/performance-lab/2.1.0/raw/modules/database/sqlite/load.php
- Modified: 2023-03-20T17:12:18+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/performance-lab/2.1.0/code/modules/database/sqlite/load.php#L10-L20`.

```php
<?php
/**
 * Module Name: SQLite Integration
 * Description: Use an SQLite database instead of MySQL.
 * Experimental: Yes
 *
 * @package performance-lab
 * @since 1.8.0
 */

// Do not load the code if it is already loaded through another means.
if ( function_exists( 'perflab_sqlite_plugin_admin_notice' ) ) {
	return;
}

require_once __DIR__ . '/admin.php';
require_once __DIR__ . '/site-health.php';

```
