mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
Switch to mxk/go-sqlite for the SQLite3 backend.
This one has the advantage of supporting SQLite3-specific operations.
This commit is contained in:
parent
169b9917e3
commit
8900e57707
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user