Sqlite

Sqlite logo

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:

  1. Discover tables and their structures
  2. Create appropriate entity classes dynamically
  3. Generate entities for each table’s data

Authentication

This connector uses a custom authentication configuration class: SQLiteAuthConfig.

Authentication Configuration

SQLite authentication configuration.

host
strRequired

The host of the SQLite database

port
intRequired

The port of the SQLite database

database
strRequired

The name of the SQLite database

user
strRequired

The username for the SQLite database

password
strRequired

The password for the SQLite database

schema
strDefaults to public

The schema of the SQLite database

tables
strDefaults to *

Comma separated list of tables to sync. For example, ‘users,orders’. For all tables, use ’*’