9 lines
359 B
Go
9 lines
359 B
Go
|
|
// Package sqlite provides a pure-Go SQLite client (via modernc.org/sqlite) with launcher
|
||
|
|
// lifecycle and health check integration.
|
||
|
|
//
|
||
|
|
// All tests can use Config{Path: ":memory:"} for fully isolated, self-contained databases.
|
||
|
|
//
|
||
|
|
// WAL mode, foreign key enforcement, and a busy timeout are enabled by default via the
|
||
|
|
// Pragmas config field.
|
||
|
|
package sqlite
|