Go to file
Tobias Matthaiou 1d627808d0 Initial commit
2019-08-20 23:35:53 +02:00
example Initial commit 2019-08-20 23:35:53 +02:00
src Initial commit 2019-08-20 23:35:53 +02:00
.gitignore Initial commit 2019-08-20 23:35:53 +02:00
composer.json Initial commit 2019-08-20 23:35:53 +02:00
LICENSE Initial commit 2019-08-20 23:33:18 +02:00
README.md Initial commit 2019-08-20 23:35:53 +02:00

Oxid SQL Logger

Returns all SQL queries in the console browser.

Install

composer require --dev tumtum/oxid-sql-logger

Usage

\StartSQLLog();

$db = \OxidEsales\Eshop\Core\DatabaseProvider::getDb(\OxidEsales\Eshop\Core\DatabaseProvider::FETCH_MODE_ASSOC);
$list = $db->getAll('SELECT * FROM oxarticle WHERE oxprice < ? LIMIT 100', [49.99]);

\StopSQLLog();