SQLite Database Integration 3 is here! 🎉
This release introduces an all-new SQLite database driver for WordPress, rebuilt from the ground up. Its purpose-built MySQL lexer, parser, and emulation layer deliver broader compatibility, more accurate behavior, and a stronger foundation for future improvements.
The 3.0 release spans nearly two years of work, featuring 160 pull requests and 1,075 commits from 15 contributors.
What's new
The new driver advances SQLite support for WordPress, plugins, database tools, and other MySQL-based applications. These improvements include:
- New SQL engine: The pure-PHP lexer and parser provide extensive coverage of the official MySQL grammar.
- Broad query support: Complex joins, subqueries, CTEs, unions, and other advanced queries are now supported.
- Schema emulation: WordPress and database tools can query emulated MySQL
INFORMATION_SCHEMAtables. - Schema introspection:
SHOWandDESCRIBEstatements provide accurate MySQL-like metadata. - Improved data handling: Types, casts, defaults, auto-increment, values, and escaping better match MySQL.
- Refined MySQL semantics: Better emulation of SQL modes, variables, functions, transactions, and errors.
- Better concurrency: Write-ahead logging and fewer locks reduce blocking between readers and writers.
- PDO API: The new driver implements the PDO MySQL API, supporting many MySQL-based tools and applications.
- Extensive testing: Test suites cover parsing, translation, metadata, concurrency, PDO, and end-to-end workflows.
For more information about the new driver and its architecture, read the driver announcement.
Modular design
The project was redesigned as a set of focused packages, separating the core driver from its WordPress integration:
- SQLite Database Integration: The WordPress plugin powered by MySQL on SQLite.
- MySQL on SQLite: A standalone PDO MySQL drop-in for running MySQL-based PHP applications on SQLite.
- MySQL proxy (experimental): A MySQL wire protocol bridge to PDO-compatible drivers for clients outside PHP.
This architecture opens the driver to new integrations, applications, and development tools beyond WordPress.
Upgrading to 3.0
Upgrading an existing SQLite site is straightforward:
- Back up your SQLite database.
- Update the plugin to version 3.0.
On first connection, the new driver automatically initializes its metadata without changing your tables or content.
If you used the new driver preview, you can now delete the WP_SQLITE_AST_DRIVER flag.
Breaking changes
Most WordPress sites need no changes. Review the following if you use a custom setup:
- New driver:
- The new driver is always used. The legacy driver was removed.
- The
WP_SQLITE_AST_DRIVERfeature flag was removed.
- Updated SQLite version requirements:
- SQLite
3.37.0or newer is required. - The
WP_SQLITE_UNSAFE_ENABLE_UNSUPPORTED_VERSIONSopt-in enables limited SQLite3.27.0–3.36.xsupport.
- SQLite
DB_NAMEis required:- It must be defined and non-empty.
- It is used dynamically, independently of the SQLite file name and stored metadata.
- SQLite defaults have changed:
- Updated configuration constants:
DATABASE_ENGINEwas removed. UseDB_ENGINE.DATABASE_TYPEis deprecated. UseDB_ENGINE.FQDBDIRis deprecated. UseDB_DIR.FQDBis deprecated. UseDB_DIRandDB_FILE.
- Updated driver classes:
WP_SQLite_Driveris deprecated. UseWP_MySQL_On_SQLite.WP_PDO_MySQL_On_SQLitewas replaced byWP_MySQL_On_SQLite.WP_SQLite_Driver_Exceptionwas replaced byWP_MySQL_On_SQLite_Exception.WP_PDO_Proxy_Statementwas replaced byWP_MySQL_On_SQLite_Statement.
- Sunsetting
$GLOBALS['@pdo']:- Injecting a PDO connection through
$GLOBALS['@pdo']is no longer supported. - Reading
$GLOBALS['@pdo']is deprecated. Use$wpdb->get_driver()->get_sqlite_pdo().
- Injecting a PDO connection through
- Renamed driver constructor options:
pdo→sqlite_pdo.journal_mode→sqlite_journal_mode.synchronous→sqlite_synchronous.
Thank you
Thank you to everyone who helped build, test, review, and improve the new driver. Your work made this possible.
@JanJakes, @adamziel, @bgrgicak, @sirreal, @wojtekn, @ashfame, @zaerl, @chloe-pomegranate, @teizz, @chubes4, @johnbillion, @wp-fuse, @desrosj, @gcsecsey, @Nitinrev787
3.0 milestone: 160 pull requests
Changes since 2.2.23: v2.2.23...v3.0.0