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.
24 lines
388 B
24 lines
388 B
2 years ago
|
//go:build cgo
|
||
|
// +build cgo
|
||
|
|
||
|
package conf
|
||
|
|
||
|
import (
|
||
|
"database/sql"
|
||
|
|
||
|
"gorm.io/driver/sqlite"
|
||
|
"gorm.io/gorm"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
sqlite3InCgoEnabled = true
|
||
|
)
|
||
|
|
||
|
func OpenSqlite3() (*sql.DB, error) {
|
||
|
return sql.Open("sqlite3", Sqlite3Setting.Dsn("sqlite3"))
|
||
|
}
|
||
|
|
||
|
func gormOpenSqlite3(opts ...gorm.Option) (*gorm.DB, error) {
|
||
|
return gorm.Open(sqlite.Open(Sqlite3Setting.Dsn("sqlite3")), opts...)
|
||
|
}
|