【发布时间】:2017-11-07 00:17:17
【问题描述】:
类似这样的:
$connection->executeQuery('check table historial1 in database $connection->executeQuery('show tables')')
【问题讨论】:
标签: pdo doctrine-orm native
类似这样的:
$connection->executeQuery('check table historial1 in database $connection->executeQuery('show tables')')
【问题讨论】:
标签: pdo doctrine-orm native
$sql = "SHOW TABLES 'Table_Name' ";
if($this->is_connected)
{
$query = $this->pdo->query($sql);
return $query->fetchAll(PDO::FETCH_COLUMN);
}
return FALSE;
【讨论】: