flowscope-cli 0.6.0

Command-line interface for FlowScope SQL lineage analyzer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Live database metadata providers for schema introspection.
//!
//! This module provides the infrastructure for fetching schema metadata directly
//! from databases at runtime. This enables accurate wildcard expansion (SELECT *)
//! without requiring manual DDL files.
//!
//! Note: This is a CLI-only feature. WASM/browser builds cannot make direct
//! database connections and should use the DDL-based schema loading instead.

#[cfg(feature = "metadata-provider")]
mod sqlx_provider;

#[cfg(feature = "metadata-provider")]
pub use sqlx_provider::fetch_metadata_from_database;