Skip to content

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

@ncatelli

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.

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