8
0
oxid-sql-logger/example/simple.php
Tobias Matthaiou 1d627808d0 Initial commit
2019-08-20 23:35:53 +02:00

11 Zeilen
294 B
PHP

<?php
require __DIR__ . '/../../../../source/bootstrap.php';
\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();