sqlite3

package
v2.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 16, 2020 License: MIT Imports: 8 Imported by: 1

README

Sqlite3 Driver

  • Runs migrations in transactions. That means that if a migration fails, it will be safely rolled back.
  • Tries to return helpful error messages.
  • Stores migration version details in table schema_migrations. This table will be auto-generated.

Usage

journey -url sqlite3://database.sqlite -path ./db/migrations create add_field_to_table
journey -url sqlite3://database.sqlite -path ./db/migrations up
journey help # for more info

Authors

Documentation

Overview

Package sqlite3 implements the Driver interface.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Open

func Open(url string) (driver.Driver, error)

Types

type Driver

type Driver struct {
	// contains filtered or unexported fields
}

func (*Driver) Close

func (driver *Driver) Close() error

func (*Driver) Execute

func (driver *Driver) Execute(statement string) error

Execute a SQL statement

func (*Driver) Migrate

func (driver *Driver) Migrate(f file.File) error

func (*Driver) Version

func (driver *Driver) Version() (file.Version, error)

Version returns the current migration version.

func (*Driver) Versions

func (driver *Driver) Versions() (file.Versions, error)

Versions returns the list of applied migrations.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL