@@ -23,6 +23,8 @@ parameters:
2323| | | |
2424| | | See http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#driver |
2525+-----------------+---------------+------------------------------------------------------------------------------------------------------------------------------+
26+ | driverClass | string | Fully-qualified name of a custom driver class. |
27+ +-----------------+---------------+------------------------------------------------------------------------------------------------------------------------------+
2628| server | string | Address of the server to connect to. |
2729+-----------------+---------------+------------------------------------------------------------------------------------------------------------------------------+
2830| user | string | User name to use to connect to the database. |
@@ -50,19 +52,20 @@ parameters:
5052| | | Reference: http://php.net/manual/en/pdostatement.fetch.php |
5153+-----------------+---------------+------------------------------------------------------------------------------------------------------------------------------+
5254
55+
5356.. _configuration-typo3-database :
5457
5558Connect to TYPO3's own database
5659===============================
5760
58- You can also connect to the database of your current TYPO3 installation. This might be useful to migrate data
61+ You can also connect to the database of your current TYPO3 installation. This might be useful to migrate data
5962from one table format to another. You could for example migrate data from :sql: `tt_news `
6063to :sql: `tx_news_domain_model_news `:
6164
6265.. code-block :: php
6366 :caption: EXT:my_extension/Configuration/TCA/Overrides/tx_news_domain_model_news.php
64-
65-
67+
68+
6669 $GLOBALS['TCA']['tx_news_domain_model_news'] = array_replace_recursive($GLOBALS['TCA']['tx_news_domain_model_news'],
6770 [
6871 'external' => [
0 commit comments