зеркало из https://github.com/microsoft/docker.git
Init database if empty file
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
This commit is contained in:
Родитель
8ac516094e
Коммит
b0ea389c69
|
@ -3,23 +3,32 @@
|
||||||
package graphdb
|
package graphdb
|
||||||
|
|
||||||
import (
|
import (
|
||||||
_ "code.google.com/p/gosqlite/sqlite3" // registers sqlite
|
|
||||||
"database/sql"
|
"database/sql"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
|
_ "code.google.com/p/gosqlite/sqlite3" // registers sqlite
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewSqliteConn(root string) (*Database, error) {
|
func NewSqliteConn(root string) (*Database, error) {
|
||||||
initDatabase := false
|
initDatabase := false
|
||||||
if _, err := os.Stat(root); err != nil {
|
|
||||||
|
stat, err := os.Stat(root)
|
||||||
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
initDatabase = true
|
initDatabase = true
|
||||||
} else {
|
} else {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if stat != nil && stat.Size() == 0 {
|
||||||
|
initDatabase = true
|
||||||
|
}
|
||||||
|
|
||||||
conn, err := sql.Open("sqlite3", root)
|
conn, err := sql.Open("sqlite3", root)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return NewDatabase(conn, initDatabase)
|
return NewDatabase(conn, initDatabase)
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче