😬
This commit is contained in:
@@ -10,6 +10,7 @@ import (
|
||||
"database/sql"
|
||||
"embed"
|
||||
"io/fs"
|
||||
"net/url"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
"strings"
|
||||
@@ -44,7 +45,12 @@ type baseDB struct {
|
||||
func openBase(path string, maxConns int, pragmas, schemaScripts, migrationScripts []string) (*baseDB, error) {
|
||||
// Open the database with options to enable foreign keys and recursive
|
||||
// triggers (needed for the delete+insert triggers on row replace).
|
||||
sqlDB, err := sqlx.Open(dbDriver, "file:"+path+"?"+commonOptions)
|
||||
pathURL := url.URL{
|
||||
Scheme: "file",
|
||||
Path: fileToUriPath(path),
|
||||
RawQuery: commonOptions,
|
||||
}
|
||||
sqlDB, err := sqlx.Open(dbDriver, pathURL.String())
|
||||
if err != nil {
|
||||
return nil, wrap(err)
|
||||
}
|
||||
@@ -110,6 +116,16 @@ func openBase(path string, maxConns int, pragmas, schemaScripts, migrationScript
|
||||
return db, nil
|
||||
}
|
||||
|
||||
func fileToUriPath(path string) string {
|
||||
path = filepath.ToSlash(path)
|
||||
if (build.IsWindows && len(path) >= 2 && path[1] == ':') ||
|
||||
(strings.HasPrefix(path, "//") && !strings.HasPrefix(path, "///")) {
|
||||
// Add an extra leading slash for Windows drive letter or UNC path
|
||||
path = "/" + path
|
||||
}
|
||||
return path
|
||||
}
|
||||
|
||||
func (s *baseDB) Close() error {
|
||||
s.updateLock.Lock()
|
||||
s.statementsMut.Lock()
|
||||
|
||||
Reference in New Issue
Block a user