Expand description
Schema introspection trait.
Driver crates (oxide-sql-sqlite, etc.) implement Introspect
to read the current database schema at runtime. The core crate
defines only the trait so it stays driver-agnostic.
Modules§
- sqlite_
helpers - Helper constants and functions for implementing
Introspecton SQLite connections. No driver dependency — just SQL strings and type-mapping logic that any SQLite driver crate can use.
Traits§
- Introspect
- Introspects a live database connection to produce a
SchemaSnapshotof the current schema.