# performance-lab/2.1.0/modules/database/sqlite/db.copy.php

Performance Lab, version 2.1.0. 29 lines.

- Page: https://pluginprobe.com/plugins/performance-lab/2.1.0/code/modules/database/sqlite/db.copy.php
- Raw: https://pluginprobe.com/plugins/performance-lab/2.1.0/raw/modules/database/sqlite/db.copy.php
- Modified: 2022-12-19T18:15:22+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/db.copy.php#L10-L20`.

```php
<?php
/**
 * Plugin Name: Performance Lab - SQLite module (Drop-in)
 * Description: Performance plugin from the WordPress Performance Team, which is a collection of standalone performance modules.
 * Version: 1.8.0
 * Author: WordPress Performance Team
 * Author URI: https://make.wordpress.org/performance/
 *
 * This file is auto-generated and copied from the performance-lab plugin.
 * Please don't edit this file directly.
 *
 * @package performance-lab
 */

define( 'PERFLAB_SQLITE_DB_DROPIN_VERSION', '1.8.0' );

// Bail early if the SQLite implementation was not located in the performance-lab plugin.
if ( ! file_exists( '{SQLITE_IMPLEMENTATION_FOLDER_PATH}/wp-includes/sqlite/db.php' ) ) {
	return;
}

// Define SQLite constant.
if ( ! defined( 'DATABASE_TYPE' ) ) {
	define( 'DATABASE_TYPE', 'sqlite' );
}

// Require the implementation from the performance-lab plugin.
require_once '{SQLITE_IMPLEMENTATION_FOLDER_PATH}/wp-includes/sqlite/db.php';

```
