Microsoft SQL Server Bootstrap Provider for Drasi
This provider reads initial data snapshots from MS SQL Server tables to bootstrap continuous queries before CDC streaming begins.
Example
use drasi_bootstrap_mssql::MsSqlBootstrapProvider;
# fn example() -> anyhow::Result<()> {
let provider = MsSqlBootstrapProvider::builder()
.with_host("localhost")
.with_database("production")
.with_user("drasi_user")
.with_password("secure_password")
.with_tables(vec!["orders".to_string()])
.build()?;
# Ok(())
# }