Current connection form
The current SQLite destination form asks for:-
Connection Name -
Database File Path - The path should point to the SQLite file MantrixFlow should write into.
- You still choose the final destination table name in the builder.
Good first use cases
- local validation copies for QA or support teams
- lightweight handoff files for internal tooling
- embedded application read models that do not need a server-backed destination
Before you connect
- Pick the exact SQLite file location you want the runtime to use.
- Make sure the directory is writable from the environment that runs the pipeline.
- Decide on the first destination table name before you build the branch.
Step by step
- Open Connections and click + New Connection.
- Set the role to Destination and choose SQLite.
- Fill the form with real values, for example:
Connection Name:Operations QA SQLiteDatabase File Path:/var/lib/mantrixflow/sqlite/qa_reporting.db
- Click Test Connection and save the connection after the test succeeds.
- In the builder’s Destination panel, configure:
Connection:Operations QA SQLiteTable:orders_liveWrite mode:Upsert
- Save the pipeline and run one manual sync before enabling a schedule.
Real-world example
A QA team lands a cleaned order feed into a SQLite file that ships with an internal troubleshooting tool, so support engineers can inspect recent records without querying production systems.Troubleshooting
- If the test fails, verify the file path and whether the runtime can create or open the database file.
- If writes fail during the run, check directory permissions and whether another process is holding the file unexpectedly.
- Validate the first manual run before treating the SQLite file as a durable downstream dependency.