mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
18 lines
281 B
Go
18 lines
281 B
Go
// +build cgo
|
|
|
|
package graphdb
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
_ "code.google.com/p/gosqlite/sqlite3" // registers sqlite
|
|
)
|
|
|
|
func NewSqliteConn(root string) (*Database, error) {
|
|
conn, err := sql.Open("sqlite3", root)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return NewDatabase(conn)
|
|
}
|