solveit-observable:SQLiteWALFrame leaf node


URI

https://ontology.solveit-df.org/solveit/observable/SQLiteWALFrame

Label

SQLite WAL Frame

Description

A single frame within a SQLite WAL, containing a version of a database page.

Usage

Instances of solveit-observable:SQLiteWALFrame can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class solveit-observable:SQLiteWALFrame
solveit-observable:frameNumber owl:DatatypeProperty The sequence number of this frame within the WAL. xsd:integer
solveit-observable:framePageNumber owl:DatatypeProperty The database page number that this frame contains a version of. xsd:integer
solveit-observable:containsPageVersion owl:ObjectProperty Links a WAL frame to the page version it contains. solveit-observable:SQLitePage

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix solveit-observable: <https://ontology.solveit-df.org/solveit/observable/> .
@prefix uco-observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .

solveit-observable:SQLiteWALFrame a owl:Class ;
    rdfs:label "SQLite WAL Frame"@en ;
    rdfs:comment "A single frame within a SQLite WAL, containing a version of a database page."@en ;
    rdfs:subClassOf uco-observable:ObservableObject .