mirror of
https://github.com/gohouse/gorose.git
synced 2025-12-24 12:47:55 +08:00
19 lines
295 B
Go
19 lines
295 B
Go
package sqlite3
|
|
|
|
import (
|
|
//_ "github.com/go-sql-driver/mysql"
|
|
"github.com/gohouse/gorose/v3/driver"
|
|
"github.com/gohouse/gorose/v3/driver/mysql"
|
|
)
|
|
|
|
const DriverName = "sqlite3"
|
|
|
|
type Builder struct {
|
|
//prefix string
|
|
mysql.Builder
|
|
}
|
|
|
|
func init() {
|
|
driver.Register(DriverName, &Builder{})
|
|
}
|