dataprof 0.7.1

High-performance data profiler with ISO 8000/25012 quality metrics for CSV, JSON/JSONL, and Parquet files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Database-specific connectors
//!
//! This module contains implementations for various database systems:
//! - PostgreSQL with connection pooling
//! - MySQL/MariaDB
//! - SQLite (embedded)

mod common;
pub mod mysql;
pub mod postgres;
pub mod sqlite;

pub use mysql::MySqlConnector;
pub use postgres::PostgresConnector;
pub use sqlite::SqliteConnector;