gpt4 book ai didi

typo3 - 如何在 Typ3 版本 10 ($GLOBALS ['TYPO3_DB' ]->sql_query()) 中执行普通 SQL?

转载 作者:行者123 更新时间:2023-12-04 10:03:09 25 4
gpt4 key购买 nike

有没有办法在typo3 10版中执行普通SQL?我怎样才能做到这一点?

// in previous versions you could do the following
$sql = 'SELECT * FROM tt_content;';
$GLOBALS['TYPO3_DB']->sql_query($sql);
while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
// ...
}

编辑

简单脚本 SELECT * FROM tt_content只是一个占位符。我想对我的统计页面做一些特殊的迁移或一些特殊的请求。

最佳答案

$connection = GeneralUtility::makeInstance(ConnectionPool::class)
->getConnectionForTable('tt_content');
$resultSet = $connection->query('SELECT * FROM tt_content')->execute();

关于typo3 - 如何在 Typ3 版本 10 ($GLOBALS ['TYPO3_DB' ]->sql_query()) 中执行普通 SQL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61733711/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com