type
constructors
make |
Sub-class constructor |
---|
fields
config |
Configuration used to init database |
---|---|
dir |
Home directory for this database |
log |
Logging for this database |
name |
Name of this database |
methods
backup |
Backup APIs |
---|---|
close |
Close the database synchronously (block until closed) |
closeAsync |
Close the database asynchronously and return future |
commit |
Convenience for |
commitAll |
Apply a list of diffs to the database in batch. |
commitAllAsync |
Commit a list of diffs to the database asynchronously. |
commitAsync |
Convenience for |
passwords |
Get storage for passwords and other secrets |
read |
Find the first record which matches the given filter. |
readAll |
Match all the records against a filter and return as grid. |
readAllList |
Match all the records against a filter and return as list. |
readById |
Convenience for |
readByIds |
Read a list of records by ids into a grid. |
readByIdsList |
Read a list of records by id. |
readCount |
Return the number of records which match given filter. |
Slot Details
backup
abstract FolioBackup backup()
Backup APIs
close
closeAsync
FolioFuture closeAsync()
Close the database asynchronously and return future
commit
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
readAll
Grid readAll(Filter filter, Dict? opts := null)
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
readById
readByIds
Grid readByIds(Ref[] ids, Bool checked := true)
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).