method status documentation in bbn\Db\Languages\Mysql
Gets the status of a table
function(string $table = '', string $database = '')
{
$cur = null;
if ($database && ($this->getCurrent() !== $database)) {
$cur = $this->getCurrent();
$this->change($database);
}
$r = $this->getRow('SHOW TABLE STATUS WHERE Name LIKE ?', $table);
if (null !== $cur) {
$this->change($cur);
}
return $r;
}
Gets the status of a table BBN is a suite of PHP and JS libraries and VueJS components - all open-source! bbn.io, build applications, the quick way
This website uses cookies to ensure you get the best experience on our website.
© 2011-2023
BBN Solutions