sqlite-database-integration
sqlite-database-integration copied to clipboard
Feature Plugin to add SQLite support to WordPress. Under Development.
Cannot create a network for multi-site when the plug in is active. But deactivating the plugin would mean the database changes aren't created on the right database.
This is a tracking issue for introducing a new MySQL query **parser** and an AST-based SQLite **driver** to significantly improve MySQL compatibility and expand WordPress plugin support. I think the...
This PR is part of the [Advanced MySQL support project](https://github.com/WordPress/sqlite-database-integration/issues/162) and builds on the previous work in [Exhaustive MySQL parser](https://github.com/WordPress/sqlite-database-integration/pull/157). This is a WIP, currently stacked on top of https://github.com/WordPress/sqlite-database-integration/pull/157.
Adds PHP 8.5 unit tests. Fixes https://github.com/WordPress/sqlite-database-integration/issues/234.
Cloudflare D1 is Cloudflare's cloud-native SQLite-based Databse offering. There are [Cloudflare D1 bindings for Laravel available](https://github.com/xlited/laravel-d1), for reference of how to proxy the query and bindings to the D1's /query...
When I try to start [Playground with the Wordfence plugin](https://playground.wordpress.net/?plugin=wordfence) it fails to activate the plugin with the following error. > [06-Nov-2025 12:06:48 UTC] PHP Fatal error: Uncaught Error: Call...
This would likely enable us to support some dynamic values (like auto-increment) in the information schema tables. From MySQL 8, all the information schema tables are views on fewer virtual...
Importing Jetpack backup attached to the related Linear issue (STU-816) results in the following error: ``` Fatal error: Uncaught PDOException: SQLSTATE[23000]: Integrity constraint violation: 19 NOT NULL constraint failed: wp_posts.post_content_filtered...
Proposes a `WP_MySQL_Naive_Query_Stream` to enable stream-processing large SQL files one query at a time without running out of memory. Usage: ```php $stream = new WP_MySQL_Naive_Query_Stream(); $stream->append_sql( 'SELECT id FROM users;...
As a follow-up on https://github.com/WordPress/sqlite-database-integration/pull/209, there are a few small improvements to be done. 1. Currently, we already have multiple maps in the form of `mysql-type-to-something`. We can consolidate them...