Initial commit

This commit is contained in:
Tobias Matthaiou
2019-08-20 23:34:33 +02:00
parent 06b33cd4d5
commit 1d627808d0
7 changed files with 154 additions and 0 deletions

10
example/simple.php Normal file
View File

@ -0,0 +1,10 @@
<?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();