Extbase - get created sql from query

后端 未结 8 1903
感动是毒
感动是毒 2020-12-01 21:35

i want to get some database tables from my typo3 extensions. The Extension is based on extbase.

The query always returns nothing but the data exists

I\'ve tr

8条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-01 22:35

    i suggest set this in typo3conf/LocalConfiguration.php file under 'SYS' array

    'SYS' => array(
    ......
    'displayErrors' => 1,
    'sqlDebug' => 1
    .......
    )
    

    and then write wrong field name in query intentionally and then execute code. this will show last query execute with error.

提交回复
热议问题