| Current Path : /var/www/html/helpdesk/vendor/codeception/base/src/Codeception/Lib/Driver/ |
| Current File : /var/www/html/helpdesk/vendor/codeception/base/src/Codeception/Lib/Driver/MySql.php |
<?php
namespace Codeception\Lib\Driver;
class MySql extends Db
{
public function cleanup()
{
$this->dbh->exec('SET FOREIGN_KEY_CHECKS=0;');
$res = $this->dbh->query("SHOW FULL TABLES WHERE TABLE_TYPE LIKE '%TABLE';")->fetchAll();
foreach ($res as $row) {
$this->dbh->exec('drop table `' . $row[0] . '`');
}
$this->dbh->exec('SET FOREIGN_KEY_CHECKS=1;');
}
protected function sqlQuery($query)
{
$this->dbh->exec('SET FOREIGN_KEY_CHECKS=0;');
parent::sqlQuery($query);
$this->dbh->exec('SET FOREIGN_KEY_CHECKS=1;');
}
public function getQuotedName($name)
{
return '`' . str_replace('.', '`.`', $name) . '`';
}
/**
* @param string $tableName
*
* @return array[string]
*/
public function getPrimaryKey($tableName)
{
if (!isset($this->primaryKeys[$tableName])) {
$primaryKey = [];
$stmt = $this->getDbh()->query(
'SHOW KEYS FROM ' . $this->getQuotedName($tableName) . ' WHERE Key_name = "PRIMARY"'
);
$columns = $stmt->fetchAll(\PDO::FETCH_ASSOC);
foreach ($columns as $column) {
$primaryKey []= $column['Column_name'];
}
$this->primaryKeys[$tableName] = $primaryKey;
}
return $this->primaryKeys[$tableName];
}
}