sqlite-database-integration
sqlite-database-integration copied to clipboard
Feature Plugin to add SQLite support to WordPress. Under Development.
Hello, When I click on "Install SQLite Database" button, my local website is working and finally give a 502 Bad Gateway issue. I've nothing related in the debug.log and read...
The [db_version function](https://github.com/WordPress/sqlite-database-integration/blob/6bfc9a643890f49ba560cc964a442b55482c8a5a/wp-includes/sqlite/class-wp-sqlite-db.php#L354) returns 5.5, noting that it is the newest version of MySQL. However 8.0 is the latest, and there's also 5.7. Perhaps it won't matter at all, but...
The sqlite-database-integration plugin, standalone, doesn't show activation and deactivation status correctly. To reproduce: 1. Activate the plugin. 2. Look at the Plugins -> drop-ins page (or just the drop-ins count)...
This reverts e59eff8c2856a5c96fc0db5da1402d5a258c8aa8. The fix was wrong. When spotting it, I misunderstood that the first token was already consumed. Without the fix, the new test fails with: ``` Cannot combine...
> [!NOTE] > You're the most welcome to take over this PR. I won't be able to drive this to completion before November. Do you need a reliable SQLite support?...
This PR implements the support for the following MySQL statements: ```sql ALTER TABLE _tmp_table CHANGE name SET DEFAULT 'abc'; ALTER TABLE _tmp_table CHANGE name DROP DEFAULT; ``` It required a...
WordPress Playground could be very useful for educators and their students. One interactive content plugin we use a lot in our learning management systems (e.g. Moodle) is the H5P editor...
Queries to `information_schema` appear to succeed without errors, but they may not be returning correct results. I found out that [there seems to be some rewriting done](https://github.com/WordPress/sqlite-database-integration/blob/25610002ef71ea0822b1f46dbdfd592b795ffa0d/wp-includes/sqlite/class-wp-sqlite-translator.php#L2668), but my guess...
The default column values in create table statements after running `show create table` contain invalid default values that do not correspond to the original tables. A non-exhaustive list of examples:...