Phalcon\Db\Adapter\Cacheable\Mysql::tableExists PHP Méthode

tableExists() public méthode

Checks if a table exists
public tableExists ( string $tableName, string $schemaName = null ) : boolean
$tableName string
$schemaName string
Résultat boolean
    public function tableExists($tableName, $schemaName = null)
    {
        $this->internalConnect();
        return parent::tableExists($tableName, $schemaName);
    }