@Override
  public DatabaseResultSet<FileMetadata> getChildren(long parentId, int seen, int num)
      throws DatabaseException {

    try {
      return BabuDBStorageHelper.getChildren(database, parentId, seen, num);
    } catch (Exception exc) {
      throw new DatabaseException(exc);
    }
  }