//! SQLite-backed projection store implementation
//!
//! Provides a queryable SQL database for derived projections from events.
//!
//! Key features:
//! - Cursor tracking for event application
//! - Schema migrations
//! - WAL mode for better concurrency
//! - Atomic batch application
//! - Optional read connection pooling for concurrent reads
pub use ;
pub use SqliteProjectionStore;
pub use SimpleProjectionTxn;