TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,28 @@
.. include:: /Includes.rst.txt
.. _feature-19494:
================================================================
Feature: #19494 - Add SELECTmmQuery method to DatabaseConnection
================================================================
See :issue:`19494`
Description
===========
A new method `SELECT_mm_query` has been added to the `DatabaseConnection` class.
This method has been extracted from `exec_SELECT_mm_query` to separate the building
and execution of M:M queries.
This enables the use of the query building in the database abstraction layer.
Example:
.. code-block:: php
$query = SELECT_mm_query('*', 'table1', 'table1_table2_mm', 'table2', 'AND table1.uid = 1', '', 'table1.title DESC');
.. index:: PHP-API, Database