bfdf63d37c
Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com>
20 lines
342 B
Go
20 lines
342 B
Go
// +build cgo
|
|
|
|
package graphdb
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
_ "code.google.com/p/gosqlite/sqlite3" // registers sqlite
|
|
)
|
|
|
|
// NewSqliteConn opens a connection to a sqlite
|
|
// database.
|
|
func NewSqliteConn(root string) (*Database, error) {
|
|
conn, err := sql.Open("sqlite3", root)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return NewDatabase(conn)
|
|
}
|