Documentation
¶
Overview ¶
Package sqlite implements the SQLite driver using modernc.org/sqlite (pure Go).
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Opts ¶
type Opts struct {
Path string
Readonly bool
Create bool
// Options are driver-specific knobs threaded into the file: DSN as
// query parameters (e.g. _journal_mode, _busy_timeout). Pass-through
// to modernc.org/sqlite. The "mode" key is reserved -- we always
// control read-only vs read-write at the URI level.
Options map[string]string
}
Opts holds SQLite connection options.
Click to show internal directories.
Click to hide internal directories.