steffenmaechtel/exception_handling_for_typo3_db
Composer 安装命令:
composer require steffenmaechtel/exception_handling_for_typo3_db
包简介
TYPO3 CMS extension: Throw exception in case of error instead of show error with DebugUtility::debug
README 文档
README
Throw exception in case of error instead of show error with DebugUtility::debug
Current handling in TYPO3 8.x with the old $GLOBALS['TYPO3_DB']
Execution of a wrong sql query only shows a debug message and dont throw an exception
$GLOBALS['TYPO3_DB']->sql_query('SELECT not_existing_field FROM pages');
In case of using a redirect after this query ($this->redirect()) the error is not shown at all
What does this extension do
Overload the class behind $GLOBALS['TYPO3_DB'] and throw exception in case of sql error
Notice
Avoid using $GLOBALS['TYPO3_DB']. Its deprecated since TYPO3 8.5.
Use the new \TYPO3\CMS\Core\Database\ConnectionPool.
This extension might help in case you cant rewrite old stuff using $GLOBALS['TYPO3_DB'].
统计信息
- 总下载量: 9
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 9
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2018-11-30