码农笔录博客源码
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

30 lignes
815 B

il y a 6 ans
package models
import (
"github.com/astaxie/beego"
il y a 6 ans
//"github.com/Unknwon/com"
//"os"
//"path"
il y a 6 ans
"github.com/astaxie/beego/orm"
il y a 6 ans
//_ "github.com/mattn/go-sqlite3"
_ "github.com/go-sql-driver/mysql"
il y a 6 ans
)
const (
_DB_NAME = "data/beeblog.db"
il y a 6 ans
_SQLITE3_DRIVER = "sqlite3"
)
func RegistDB() {
il y a 6 ans
//if !com.IsExist(_DB_NAME){
// os.MkdirAll(path.Dir(_DB_NAME),os.ModePerm)
// os.Create(_DB_NAME)
//}
//orm.RegisterModel(new(Attachment),new(Topic))
il y a 6 ans
//orm.RegisterDriver(_SQLITE3_DRIVER,orm.DRSqlite)
//orm.RegisterDataBase("default",_SQLITE3_DRIVER,_DB_NAME,10)
il y a 6 ans
orm.RegisterModel(new(User), new(Blog), new(NLabel), new(Note), new(NoteColl), new(Category), new(Like), new(Comment))
orm.RegisterDataBase("default", "mysql", "root:"+beego.AppConfig.String("dburl")+"/beeblog?charset=utf8&loc=Local", 30)
}