SQLite adapter for the Juttle data flow language, enabling read and write operations on SQLite databases. Version 0.6.0 is the latest stable release, though the project appears to be in maintenance mode with no recent updates. It supports time-series data via a timeField option, raw SQL queries, and debug output. Unlike generic database adapters, it integrates seamlessly with Juttle's streaming query model. Installation requires side-by-side setup with the juttle engine.
npm install juttle-sqlite-adapterNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows installation, configuration, and basic read/write Juttle programs using the SQLite adapter.
Consider migrating to a modern alternative or forking the repository.
Install juttle package alongside: npm install juttle juttle-sqlite-adapter
Prefer using the -table option with filter conditions instead of raw SQL.
Ensure the SQLite file exists before running Juttle queries.
Run: npm install juttle
Ensure -table is followed by a table name in quotes, e.g., -table 'my_table'
Verify table name and database path in config; create table if needed.