1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-18 11:54:13 +00:00

added new querybuilder

This commit is contained in:
Zheng Yang 2014-09-08 17:47:15 +08:00
parent b2cdabb8a0
commit c667895ce5

View File

@ -28,3 +28,8 @@ type QueryBuilder interface {
Subquery(query string, rename string) string
String() string
}
func NewQueryBuilder() (qb QueryBuilder) {
qb = new(MySQLQueryBuilder)
return
}