Switch to mxk/go-sqlite for the SQLite3 backend.

This one has the advantage of supporting SQLite3-specific operations.
This commit is contained in:
Qi Xiao 2016-02-20 01:21:50 +01:00
parent 169b9917e3
commit 8900e57707
2 changed files with 2 additions and 2 deletions

View File

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

View File

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