From e740c4c366761142a22a6024fee29ba652249f35 Mon Sep 17 00:00:00 2001 From: Nitin Revanker Date: Thu, 8 Jan 2026 22:14:42 +0530 Subject: [PATCH] Clarify how SQLite integration affects WordPress database queries Adds a technical FAQ entry explaining that WordPress continues to use the wpdb API while queries are internally adapted for SQLite compatibility. --- readme.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/readme.txt b/readme.txt index 48217744..14eff677 100644 --- a/readme.txt +++ b/readme.txt @@ -36,3 +36,12 @@ Feedback is encouraged and much appreciated, especially since this plugin is a f = How can I contribute to the plugin? = Contributions are always welcome! Learn more about how to get involved in the [Core Performance Team Handbook](https://make.wordpress.org/performance/handbook/get-involved/). + += Does this plugin change how WordPress queries are executed? = + +The plugin replaces the default MySQL-based database layer with an +SQLite-backed implementation. Core WordPress code continues to use +the wpdb API, while queries are internally adapted to be compatible +with SQLite syntax and behavior. + +