Gdn_DatabaseStructure::getRowCountEstimate PHP Method

getRowCountEstimate() public method

Get the estimated number of rows in a table.
public getRowCountEstimate ( string $tableName ) : integer | null
$tableName string The name of the table to look up, without its prefix.
return integer | null Returns the estimated number of rows or **null** if the information doesn't exist.
    public function getRowCountEstimate($tableName)
    {
        // This method is basically abstract.
        return null;
    }