Use a fork of mxk/go-sqlite.

This commit is contained in:
Qi Xiao 2016-02-20 01:47:40 +01:00
parent 8cb35dfafc
commit 3c75e71a8b
2 changed files with 1 additions and 3 deletions

View File

@ -6,7 +6,7 @@ import (
"fmt" "fmt"
"net/url" "net/url"
_ "github.com/mxk/go-sqlite/sqlite3" // enable the "sqlite3" SQL driver _ "github.com/elves/go-sqlite/sqlite3" // enable the "sqlite3" SQL driver
) )
// Store is the permanent storage backend for elvish. // Store is the permanent storage backend for elvish.

View File

@ -6,8 +6,6 @@ import (
"database/sql" "database/sql"
"fmt" "fmt"
"testing" "testing"
_ "github.com/mxk/go-sqlite/sqlite3" // enable the "sqlite3" SQL driver
) )
var tStore *Store var tStore *Store