faucet-sink-sqlite 1.0.1

SQLite sink connector for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_cfg))]

//! # faucet-sink-sqlite
//!
//! SQLite sink connector for the faucet-stream ecosystem.
//!
//! Writes `serde_json::Value` records to a SQLite table using a JSON
//! column or dynamic column mapping.

pub mod config;
pub mod sink;

pub use faucet_core::{FaucetError, Sink};

pub use config::{SqliteColumnMapping, SqliteSinkConfig};
pub use sink::SqliteSink;