/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Adapter
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Adapter/Database.php (2698B)
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
namespace PrestaShop\PrestaShop\Adapter;
use Db;
use DbQuery;
/**
* Adapter for Db legacy class.
*/
class Database implements \PrestaShop\PrestaShop\Core\Foundation\Database\DatabaseInterface
{
/**
* Perform a SELECT sql statement.
*
* @param string $sqlString
*
* @return array|false
*
* @throws \PrestaShopDatabaseException
*/
public function select($sqlString)
{
return Db::getInstance()->executeS($sqlString);
}
/**
* Escape $unsafe to be used into a SQL statement.
*
* @param string $unsafeData
*
* @return string
*/
public function escape($unsafeData)
{
return Db::getInstance()->escape($unsafeData, true, true);
}
/**
* Returns a value from the first row, first column of a SELECT query.
*
* @param string|DbQuery $sql
* @param bool $useMaster
* @param bool $useCache
*
* @return string|false|null
*/
public function getValue($sql, $useMaster = true, $useCache = true)
{
return Db::getInstance($useMaster)->getValue($sql, $useCache);
}
/**
* Returns the text of the error message from previous database operation.
*
* @return string
*/
public function getErrorMessage()
{
return Db::getInstance()->getMsgError();
}
/**
* Enable the cache.
*/
public function enableCache()
{
Db::getInstance()->enableCache();
}
/**
* Disable the cache.
*/
public function disableCache()
{
Db::getInstance()->disableCache();
}
}