Source code for sqliterc.resources

"""SQLite database resources."""


[docs] class ColumnDefinition: """Column definition. Attributes: name (str): name of the column. value_type (str): value type of the column. """
[docs] def __init__(self): """Initializes a column definition.""" super().__init__() self.name = None self.value_type = None
[docs] class DatabaseDefinition: """Database definition. Attributes: artifact_definition (str): name of the corresponding Digital Forensics Artifact definition. database_identifier (str): identifier of the database. """
[docs] def __init__(self): """Initializes a database definition.""" super().__init__() self.artifact_definition = None self.database_identifier = None