Miscellaneous

Database

DearDiary.get_databaseFunction
get_database()::Union{SQLite.DB,Nothing}

Returns a SQLite database connection. If the database has not been initialized, it returns nothing.

Returns

A SQLite.DB object, or nothing if the database is not initialized.

source

Enumerations

DearDiary.StatusType
@enum Status IN_PROGRESS = 1 STOPPED = 2 FINISHED = 3

An enumeration representing the status of an experiment.

source
DearDiary.IN_PROGRESSConstant
IN_PROGRESS::Status

An enumeration value representing an experiment that is currently in progress.

source
DearDiary.STOPPEDConstant
STOPPED::Status

An enumeration value representing an experiment that has been stopped.

source

Marker types

DearDiary.UpdatedType
Updated <: UpsertResult

A marker type indicating that a record was successfully updated.

source
DearDiary.UnprocessableType
Unprocessable <: UpsertResult

A marker type indicating that a record violates a constraint and cannot be processed.

source
DearDiary.ErrorType
Error <: UpsertResult

A marker type indicating that an error occurred while creating or updating a record.

source