Postgres::getGroups PHP Method

getGroups() public method

Returns all groups in the database cluser
public getGroups ( ) : All
return All groups
    function getGroups()
    {
        $sql = "SELECT groname FROM pg_group ORDER BY groname";
        return $this->selectSet($sql);
    }
Postgres