Documentation
¶
Index ¶
- Variables
- func AppSchemaVersion() uint
- func Backup(db *sqlx.DB, backupPath string) error
- func Close() error
- func DatabaseBackupPath() string
- func DatabasePath() string
- func Initialize(databasePath string) error
- func NeedsMigration() bool
- func Ready() error
- func Reset(databasePath string) error
- func RestoreFromBackup(backupPath string) error
- func RunMigrations() error
- func Version() uint
- func WithTxn(fn func(tx *sqlx.Tx) error) error
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrMigrationNeeded indicates that a database migration is needed // before the database can be initialized ErrMigrationNeeded = errors.New("database migration required") // ErrDatabaseNotInitialized indicates that the database is not // initialized, usually due to an incomplete configuration. ErrDatabaseNotInitialized = errors.New("database not initialized") )
View Source
var DB *sqlx.DB
View Source
var WriteMu sync.Mutex
Functions ¶
func AppSchemaVersion ¶ added in v0.2.0
func AppSchemaVersion() uint
func Backup ¶ added in v0.2.0
Backup the database. If db is nil, then uses the existing database connection.
func DatabaseBackupPath ¶ added in v0.2.0
func DatabaseBackupPath() string
func DatabasePath ¶ added in v0.7.0
func DatabasePath() string
func Initialize ¶
Initialize initializes the database. If the database is new, then it performs a full migration to the latest schema version. Otherwise, any necessary migrations must be run separately using RunMigrations. Returns true if the database is new.
func Ready ¶ added in v0.7.0
func Ready() error
Ready returns an error if the database is not ready to begin transactions.
func RestoreFromBackup ¶ added in v0.2.0
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.