dbinspect_drift 0.1.0
dbinspect_drift: ^0.1.0 copied to clipboard
A Drift adapter for dbinspect_bridge, so a desktop client can browse your app's Drift database while it runs.
Changelog #
0.1.0 #
First release. The Drift adapter for dbinspect_bridge.
- Stores from
allTables, the declared schema from the generated$columns(inferred: false), paging throughcustomSelect. Blobs truncated at 64 KB. - Drift's type mapping is applied, so a
DateTimeColumnreads as a date and aBoolColumnas a boolean rather than as the integers on disk. - Watch mode over
tableUpdates(), reported honestly aswatchScope: "in-process"— it sees this Drift instance's writes and nothing else. - Drift
>=2.12.0 <3.0.0, which is the oldest release this analyzes clean against. - Transactions (
docs/PROTOCOL.md§3.1).beginTransactionruns the session's reads and writes inside Drift's owntransaction(), so nothing reaches the database until commit and a rollback discards the lot.