2023-04-24 16:37:15 +05:30
---
title: SQLite
2023-05-04 12:37:18 -07:00
slug: /connectors/database/sqlite
2023-04-24 16:37:15 +05:30
---
# SQLite
{% multiTablesWrapper %}
| Feature | Status |
| :----------------- | :--------------------------- |
| Stage | PROD |
| Metadata | {% icon iconName="check" /%} |
| Query Usage | {% icon iconName="check" /%} |
| Data Profiler | {% icon iconName="check" /%} |
| Data Quality | {% icon iconName="cross" /%} |
| Lineage | Partially via Views |
| DBT | {% icon iconName="check" /%} |
| Supported Versions | -- |
| Feature | Status |
| :----------- | :--------------------------- |
| Lineage | Partially via Views |
| Table-level | {% icon iconName="check" /%} |
| Column-level | {% icon iconName="check" /%} |
{% /multiTablesWrapper %}
In this section, we provide guides and references to use the Presto connector.
Configure and schedule Presto metadata and profiler workflows from the OpenMetadata UI:
- [Requirements ](#requirements )
- [Metadata Ingestion ](#metadata-ingestion )
2023-04-28 07:09:12 -07:00
- [Data Profiler ](/connectors/ingestion/workflows/profiler )
- [Data Quality ](/connectors/ingestion/workflows/data-quality )
- [dbt Integration ](/connectors/ingestion/workflows/dbt )
2023-04-24 16:37:15 +05:30
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/ingestion-modes-tiles.md" variables={yamlPath: "/connectors/database/sqlite/yaml"} /%}
2023-04-24 16:37:15 +05:30
## Requirements
### Metadata
2023-07-06 15:11:13 +02:00
To extract metadata, the user needs to be able to perform `.tables` , `.schema` , on database you wish to extract metadata from and have `SELECT` permission on the `sqlite_temp_master` . Access to resources will be different based on the connector used.
2023-04-24 16:37:15 +05:30
## Metadata Ingestion
2023-07-06 15:11:13 +02:00
{% partial
file="/v1.1.0/connectors/metadata-ingestion-ui.md"
variables={
connector: "SQLite",
selectServicePath: "/images/v1.1.0/connectors/sqlite/select-service.png",
addNewServicePath: "/images/v1.1.0/connectors/sqlite/add-new-service.png",
serviceConnectionPath: "/images/v1.1.0/connectors/sqlite/service-connection.png",
}
/%}
2023-04-24 16:37:15 +05:30
2023-07-06 15:11:13 +02:00
{% stepsContainer %}
2023-04-24 16:37:15 +05:30
{% extraContent parentTagName="stepsContainer" %}
2023-07-06 15:11:13 +02:00
#### Connection Details
2023-04-24 16:37:15 +05:30
- **Username**: Username to connect to SQLite. Blank for in-memory database.
- **Password**: Password to connect to SQLite. Blank for in-memory database.
- **Host and Port**: Enter the fully qualified hostname and port number for your SQLite deployment in the Host and Port field.
- **Database**: The database of the data source is an optional parameter, if you would like to restrict the metadata reading to a single database. If left blank, OpenMetadata ingestion attempts to scan all the databases.
- **Database Mode**: How to run the SQLite database. :memory: by default.
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/database/advanced-configuration.md" /%}
2023-04-24 16:37:15 +05:30
{% /extraContent %}
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/test-connection.md" /%}
2023-04-24 16:37:15 +05:30
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/database/configure-ingestion.md" /%}
2023-04-24 16:37:15 +05:30
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/ingestion-schedule-and-deploy.md" /%}
2023-04-24 16:37:15 +05:30
{% /stepsContainer %}
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/troubleshooting.md" /%}
2023-04-24 16:37:15 +05:30
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/database/related.md" /%}