Database Connection
Because SQLite is file-based, there is no server to connect to. Instead of connection credentials, you provide the database file itself, which BonData reads and stores securely.Step 1: Prepare Your Database File
- Locate your SQLite database file - typically with a
.sqlite,.db, or.sqlite3extension - Make sure the file contains the tables you want to work with
- Confirm the file is not currently locked by another process (close any application writing to it)
BonData reads SQLite databases in read-only mode. Uploading a file never modifies your original database.
Step 2: Upload the File
- In BonData, navigate to Integrations and select SQLite
- Click Upload and select your database file
- Wait for the upload to complete - BonData stores the file securely and inspects its schema
Step 3: Review Discovered Tables
Once uploaded, BonData reads the database schema and lists the available tables and their row counts. You can then select the tables you want to sync.Required Fields
Available Data
Once uploaded, BonData can sync:- Tables - All tables in the uploaded database
- Views - Views defined within the database
- Custom Queries - Run custom SQL queries to extract specific data