mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
469 B
26 lines
469 B
2 years ago
|
//go:build !cgo
|
||
|
// +build !cgo
|
||
|
|
||
|
package conf
|
||
|
|
||
|
import (
|
||
|
"database/sql"
|
||
|
|
||
|
"gorm.io/driver/sqlite"
|
||
|
"gorm.io/gorm"
|
||
|
_ "modernc.org/sqlite"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
sqlite3InCgoEnabled = false
|
||
|
)
|
||
|
|
||
|
func OpenSqlite3() (*sql.DB, error) {
|
||
|
return sql.Open("sqlite", Sqlite3Setting.Dsn("sqlite"))
|
||
|
}
|
||
|
|
||
|
func gormOpenSqlite3(opts ...gorm.Option) (*gorm.DB, error) {
|
||
|
dialector := &sqlite.Dialector{DriverName: "sqlite", DSN: Sqlite3Setting.Dsn("sqlite")}
|
||
|
return gorm.Open(dialector, opts...)
|
||
|
}
|