class

Folio

const abstract class Folio : Obj

Folio database

constructors make

Sub-class constructor

fields log

Logging for this database

name

Name of this database

dir

Home directory for this database

config

Configuration used to init database

methods readByIds

Read a list of records by ids into a grid

backup

Backup APIs

readAllList

Match all the records against a filter and return as list

read

Find the first record which matches the given filter

commit

Convenience for commitAll with a single diff

readById

Convenience for readByIds with single id

readCount

Return the number of records which match given filter

commitAllAsync

Commit a list of diffs to the database asynchronously

readAll

Match all the records against a filter and return as grid

commitAsync

Convenience for commitAllAsync with a single diff

commitAll

Apply a list of diffs to the database in batch

passwords

Get storage for passwords and other secrets

readByIdsList

Read a list of records by id

closeAsync

Close the database asynchronously and return future

close

Close the database synchronously (block until closed)

backup abstract FolioBackup backup()

Backup APIs

close Void close(Duration? timeout)

Close the database synchronously (block until closed)

closeAsync FolioFuture closeAsync()

Close the database asynchronously and return future

commit Diff commit(Diff diff)

Convenience for commitAll with a single diff.

commitAll Diff[] commitAll(Diff[] diffs)

Apply a list of diffs to the database in batch. Either all the changes are successfully applied, or else none of them are applied and an exception is raised. Return updated Diffs which encapsulate both the old and new version of each record.

If any of the records have been modified since they were read for the given change set then ConcurrentChangeErr is thrown unless Diff.force configured.

commitAllAsync FolioFuture commitAllAsync(Diff[] diffs)

Commit a list of diffs to the database asynchronously.

commitAsync FolioFuture commitAsync(Diff diff)

Convenience for commitAllAsync with a single diff.

config const FolioConfig : config

Configuration used to init database

dir const File : dir

Home directory for this database

log const Log : log

Logging for this database

make new make(FolioConfig config)

Sub-class constructor

name const Str : name

Name of this database

passwords abstract PasswordStore passwords()

Get storage for passwords and other secrets

read Dict? read(Filter filter, Bool checked)

Find the first record which matches the given filter. Throw UnknownRecErr or return null based on checked flag.

readAll Grid readAll(Filter filter, Dict? opts)

Match all the records against a filter and return as grid.

Options:

  • limit: max number of recs to read
  • search: search string to apply in addition to filter
  • sort: marker tag to sort recs by dis string
  • trash: marker tag to include recs with trash tag
  • gridMeta: Dict to use for grid meta

readAllList Dict[] readAllList(Filter filter, Dict? opts)

Match all the records against a filter and return as list. This method uses same semantics and options as readAll.

readById Dict? readById(Ref id, Bool checked)

Convenience for readByIds with single id.

readByIds Grid readByIds(Ref[] ids, Bool checked)

Read a list of records by ids into a grid. The rows in the result correspond by index to the ids list. If checked is true, then every id must be found in the project or UnknownRecErr is thrown. If checked is false, then an unknown record is returned as a row with every column set to null (including the id tag).

readByIdsList Dict?[] readByIdsList(Ref[] ids, Bool checked)

Read a list of records by id. The resulting list matches the list of ids by index (null if record not found).

readCount Int readCount(Filter filter, Dict? opts)

Return the number of records which match given filter. This method supports the same options as readAll.

Haxall 4.0.5 ∙ 24-Feb-2026 14:33 EST