Skip to content

[Cache] Document requirements for DoctrineDbalAdapter #19187

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion components/cache/adapters/doctrine_dbal_adapter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,22 @@ optional arguments::
necessary to detect the database engine and version without opening the
connection.

The adapter uses SQL syntax that is optimized for database server that it is connected to.
The following database servers are known to be compatible:

* MySQL 5.7 and newer
* MariaDB 10.2 and newer
* Oracle 10g and newer
* SQL Server 2012 and newer
* SQLite 3.24 or later
* PostgreSQL 9.5 or later

.. note::

Newer releases of Doctrine DBAL might increase these minimal versions. Please check
the manual page on `Doctrine DBAL Platforms`_ if your database server is compatible
with the installed Doctrine DBAL version.

.. _`Doctrine DBAL Connection`: https://github.com/doctrine/dbal/blob/master/src/Connection.php
.. _`Doctrine DBAL URL`: https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
.. _`Doctrine DBAL URL`: https://www.doctrine-project.org/projects/doctrine-dbal/en/current/reference/configuration.html#connecting-using-a-url
.. _`Doctrine DBAL Platforms`: https://www.doctrine-project.org/projects/doctrine-dbal/en/current/reference/platforms.html