Phalcon\Db\Adapter\Cacheable\Mysql::tableExists PHP Method

tableExists() public method

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