Skip to content

SQLite Driver does not correctly match the Driver interface. #58

Description

@ncatelli

It looks like the SQLite driver doesn't conform to the core.Driver interface. An example being

func (dri *Driver) Init(filepath string) error {
	db, err := sql.Open("sqlite3", filepath)
	if err != nil {
		return err
	}

	dri.Db = db
	return nil
}

This package should be reviewed and updated to bring it back into conformity with the interface.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions