sqlite-database-integration icon indicating copy to clipboard operation
sqlite-database-integration copied to clipboard

Feature Plugin to add SQLite support to WordPress. Under Development.

Results 84 sqlite-database-integration issues
Sort by recently updated
recently updated
newest added

From https://wordpress.org/support/topic/warning-constant-sqlite_driver_version-already-defined/: > I’m using LocalWP. The issue occurs if the site is cloned from a blueprint that already has the plugin activated. > After disabling the plugin and reactivating...

Getting some deprecation warnings: ``` Deprecated: Method PDO::sqliteCreateFunction() is deprecated since 8.5, use Pdo\Sqlite::createFunction() instead in /.../wp-content/mu-plugins/sqlite-database-integration/wp-includes/sqlite/class-wp-sqlite-pdo-user-defined-functions.php on line 34 ``` Otherwise seems fine at first glance.

When [Turso DB](https://turso.tech/) is more feature-complete, let's run the SQLite driver test suite also against Turso DB to evaluate the compatibility. See: - https://turso.tech/blog/turso-the-next-evolution-of-sqlite - https://github.com/tursodatabase/turso - https://github.com/tursodatabase/turso-client-php

The [Playground Block](https://wordpress.org/plugins/interactive-code-block/) plugin has a [GitHub action](https://github.com/WordPress/playground-tools/blob/trunk/.github/workflows/release-playground-block.yml) to publish a new version in the WordPress plugins directory. It would be useful to have a similar action here. What do...

Currently, the new AST-based SQLite driver is behind a feature flag (constant `WP_SQLITE_AST_DRIVER`). Once we're confident, we can switch to it by default, we can make the default behavior for...

The plugin could support migrating from SQLite to MySQL and the other way around. It would: * Help ship SQLite support in WordPress core * Encourage people worried about staying...

The test suite for the new SQLite driver originates from the old driver tests being duplicated. As the test suite was growing over time, it would make sense to better...

Currently, the SQLite driver uses `utf8mb4` as the database charset, and it saves the table and column charsets and collation to the information schema, but it doesn't verify or consider...

Currently, the SQLite driver saves the specified table engine in the information schema, but it doesn't emulate different engine behavior in any way, nor it checks whether the engine is...