package sqlite import ( "../../../hotime" "database/sql" _ "github.com/mattn/go-sqlite3" ) func SetDB(appIns *hotime.Application) { appIns.SetConnectDB(func(err ...*hotime.Error) *sql.DB { db, e := sql.Open("sqlite3", appIns.Config.GetString("dbName")) if e != nil && len(err) != 0 { err[0].SetError(e) } return db }) }