Feature #80469
closedEpic #24849: Upgrade Wizard Usability
Upgrade Wizard: "Show database queries performed" without values
0%
Description
hi,
i made on friday (24.3.) an upgrade from TYPO3 7.6.16 to current master .
When i clicked the "Show database queries performed" checkbox i got results like this:
Remove unneeded CLI backend users
UPDATE `be_users` SET `deleted` = 1 WHERE `uid` = :dcValue1
Update the hash field of sys_refindex to exclude the sorting field
UPDATE `sys_refindex` SET `hash` = ? WHERE `hash` = ?
Static templates have been relocated to EXT:fluid_styled_content/Configuration/TypoScript/
UPDATE `sys_template` SET `include_static_file` = :dcValue2, `constants` = :dcValue3, `config` = :dcValue4 WHERE `uid` = :dcValue1
would be nice to have "copy & paste" ready SQL Statement
Best Regards
Sven
Updated by Morton Jonuschat over 7 years ago
- Tracker changed from Bug to Feature
- Category set to Install Tool
- Status changed from New to Rejected
The TYPO3 core uses named parameters to interact with the database for all non-integer values and almost all integers. In this mode the parameters are transmitted separately from the statement and there's no possibility to get a command that can be used with copy & paste.