Sqlite
Sqlite
Connect your Sqlite data to Airweave
Overview
The Sqlite connector allows you to sync data from Sqlite into Airweave, making it available for search and retrieval by your agents.
Configuration
SQLiteSource
SQLite source implementation.
This source connects to a SQLite database and generates entities for each table. It uses database introspection to:
- Discover tables and their structures
- Create appropriate entity classes dynamically
- Generate entities for each table’s data
Authentication
This connector uses a custom authentication configuration class: SQLiteAuthConfig
.
Authentication Configuration
SQLite authentication configuration.
host
The host of the SQLite database
port
The port of the SQLite database
database
The name of the SQLite database
user
The username for the SQLite database
password
The password for the SQLite database
schema
The schema of the SQLite database
tables
Comma separated list of tables to sync. For example, ‘users,orders’. For all tables, use ’*’