solveit-observable:SQLiteDatabase leaf node


URI

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

Label

SQLite Database

Description

A SQLite database file stored on disk.

Superclasses (1)

Usage

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

PROPERTYTYPEDESCRIPTIONRANGE
From class solveit-observable:SQLiteDatabase
solveit-observable:journalMode owl:DatatypeProperty The SQLite journal mode: DELETE, TRUNCATE, PERSIST, MEMORY, WAL, or OFF. xsd:string
solveit-observable:hasJournal owl:ObjectProperty Links a SQLite database to its rollback journal. solveit-observable:SQLiteJournal
solveit-observable:hasPage owl:ObjectProperty Links a SQLite database to a physical storage page. solveit-observable:SQLitePage
solveit-observable:hasTable owl:ObjectProperty Links a SQLite database to a table it contains. solveit-observable:SQLiteTable
solveit-observable:hasWAL owl:ObjectProperty Links a SQLite database to its Write-Ahead Log. solveit-observable:SQLiteWAL
From class uco-observable:File
solveit-observable:hasClusterRun owl:ObjectProperty Links a file to its cluster allocation runs. A contiguous file has one run; a fragmented file has multiple runs. solveit-observable:ClusterRun

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:SQLiteDatabase a owl:Class ;
    rdfs:label "SQLite Database"@en ;
    rdfs:comment "A SQLite database file stored on disk."@en ;
    rdfs:subClassOf uco-observable:File .