func (s *RoleService) existsResource(id int64) (bool, error) {
    r, err := s.Dbh.Select("auth_role_id").From("auth_role").
        Where("auth_role_id = $1", id).Exec()
    if err != nil {
        return false, err