c667895c by Zheng Yang

added new querybuilder

1 parent b2cdabb8
...@@ -28,3 +28,8 @@ type QueryBuilder interface { ...@@ -28,3 +28,8 @@ type QueryBuilder interface {
28 Subquery(query string, rename string) string 28 Subquery(query string, rename string) string
29 String() string 29 String() string
30 } 30 }
31
32 func NewQueryBuilder() (qb QueryBuilder) {
33 qb = new(MySQLQueryBuilder)
34 return
35 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!